How to get purchase values from Dynamic ads in python via Facebook MAPI? -


i'm trying complete purchase value of ads running @ date account. however, dynamic ads conversions (purchase) don't seem included.

    limit = 1000     fields = [         'campaign_name',         'adset_name',         'date_start',         'date_stop',         'campaign_id',         'unique_clicks',         'unique_ctr',         'unique_link_clicks_ctr',         'spend',         'reach',         'total_actions',         'actions',         'cost_per_unique_click',         'objective',         'relevance_score',         'actions',         'action_values'     ]     params = {         'time_range': {             'since': report_date,             'until': report_date         },         'action_attribution_windows':  ['28d_click'],         'level': 'ad',         'limit': limit if limit > 0 else none     } 

i call:

get_insights(fields, params, async=true)

and read values out "offsite_conversion.fb_pixel_purchase" , works beautifully accounts except ones have dynamic ads setup product catalog.

anyone know go total conversion values?

thanks, bo


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -