Community Discussion

Ask a Question
Back to All

Blocking publishers via API

I am trying to block a publisher within a single company via a POST request to a URL:
https://backstage.taboola.com/backstage/api/1.0/account-id/campaigns/campaign-id
Request body:
{
"publisher_targeting": {
"type": "EXCLUDE",
"value": [
"my-publisher"
],
"href": null
}
}

Next, I go to the control panel, where all the publishers of the campaign are located. Here I can see that the publishers I specified in the request body specified above are not blocked after the POST request is executed. What could be the problem? Perhaps there is a delay in the web interface until the actual data appears?