Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List Facebook Lead Ads questions per form

Is it possible to list the questions asked in a specific ad form id? In this docs https://developers.facebook.com/docs/marketing-api/guides/lead-ads/v2.5 is see that is only possible to list all the questions of a specific page using "leadgen_qualifiers" but is possible to list for a specific ad form id? Thanks, Alex.

like image 884
ale500 Avatar asked Dec 13 '25 20:12

ale500


1 Answers

For read all the question answered on a specific formId I use the following code of the PHP Marketing SDK:

    // Initialize a new Session and instanciate an Api object
    Api::init($app_id, $app_secret, $access_token);

    $form  = new LeadgenForm($formId);
    // A cursor of Lead object
    $cursor =  $form->getLeads();

Under the Hood it make the call /v2.5/<FORM ID>/leads

Hope this help

like image 189
Matteo Avatar answered Dec 16 '25 12:12

Matteo