I am using GFAPI::get_entries() with search criteria.
However I don’t think I have the right meta key added to my search criteria.
I added the paramater name to that field as franchise_page_id.
How would I be able to find the name of the meta key for a specific field on a form with that parameter name?
I know that the field is number 15 and key => '15' works in the search criteria but not with franchise_page_id.
$search_criteria = array(
'status' => 'active',
'field_filters' => array(
'mode' => 'any', // Get any of these key value pairs
array(
'key' => 'franchise_page_id',
'value' => $user_franchisee_id
)
)
);
$result = GFAPI::get_entries( 1, $search_criteria );
The field parameter name setting is only used for dynamic population on form display. To search the entries, you need to use the field ID (key => '15').