I’m trying to change a campaign status using the Facebook Marketing API as documented here.
I managed to change the campaign status to PAUSED, but I can’t change it back to ACTIVE, even though the API response indicates success.
Here is the API request I’m making:
https://graph.facebook.com/v19.0/{campaign_id}?access_token={token}&status=ACTIVE
The response I get is:
{
"success": true
}
However, the campaign status remains paused. Has anyone encountered this issue or know why the status isn’t updating despite the success response?
Additional details:
-
I used the same approach to pause the campaign, and it worked perfectly.
-
The access token and campaign ID are correct.
Any help would be greatly appreciated!