Facebook Ads API how to get all campaigns that are in draft status

2.1k Views Asked by At

I have created a Ads and campaigns in Facebook Ads Manager. But they are not yet published

I have tried the following API call to get a list of all the campaigns I have created,

/v3.2/act_XXXX/campaigns

But I am getting an empty response,

{
  "data": [
  ]
}

Is there any other way to list all the campaigns created irrespective of they are published or not

1

There are 1 best solutions below

6
On

The default filter is ACTIVE campaign, if you want to retrieve for different state you can use the filter options, as example:

act_XXXX/campaigns?filtering=[{'field':'effective_status','operator':'IN','value':["ACTIVE","PAUSED","PENDING_REVIEW"]}]&fields=name,effective_status

And add in the list the status you need, from the doc:

effective_status enum {ACTIVE, PAUSED, DELETED, PENDING_REVIEW, DISAPPROVED, PREAPPROVED, PENDING_BILLING_INFO, CAMPAIGN_PAUSED, ARCHIVED, ADSET_PAUSED, WITH_ISSUES}

Facebook doc here