Community Discussion
bulk update several campaigns cpc bid in one api command?
What is the write way to update several campaigns cpc bid in one api command?
I am writing it wrong as I do not know coding but I will appreciate a right code for this idea
{
"campaigns": [
27024300
],
"update": {
"cpc": 0.01,
"is_active": true
}
};
{
"campaigns": [
26986128
],
"update": {
"cpc": 0.03,
"is_active": true
}
}
--- end of code
I am using Postman software
Any other solution to upload like csv file like this
27024300:0.01
26986128:0.03
it will be better?
Thanks in advance
Posted by null 30 days ago
can't add countries in bulk update
I've posted to
<https://backstage.taboola.com/backstage/api/1.0/taboolaaccountplacedhere/campaigns/bulk-update>
{
"campaigns": [
21052236,
20964357
],
"country_targeting": {
"type": "INCLUDE",
"value": [
"FR",
"AU"
]
}
}
but i get error code
{
"http_status": 400,
"message": "Unknown field name 'country_targeting'",
"message_code": "api.action.bad_request.null"
}
while other api requests i do works
Posted by Nathan 6 months ago
Bulk update campaigns Daily Cap
When using the bulk update POST:
https://backstage.taboola.com/backstage/api/1.0/XXXX/campaigns/bulk-update
is there a way to bulk update daily caps of campaigns, or can that only be done with the individual campaign update POST.
thanks
Posted by aaron almost 2 years ago