I am using the HTTP module to talk to the Meta Business API in order to create a Campaign. I can do this successfully using the Graph API Explorer and the following POST command:
https://graph.facebook.com/v19.0/act_XXXXXXXX/campaigns?name=My+campaign1&objective=OUTCOME_ENGAGEMENT&status=PAUSED&special_ad_categories=%5B%5D
In Make, I set up an HTTP module like this:
I am getting this error: “The parameter special_ad_categories is required”.
As per the Meta docs, I need to pass in an array for this parameter. In my case, there are no special categories, so I want to pass in an empty array. I have tried to do this with []
, with %5B%5D
and with NONE
but I cannot get past this error. Any ideas appreciated!
Barnaby