post https://backstage.taboola.com/backstage/api/1.0//campaigns//items//
Submit a JSON object in a PUT or POST request body.
Fields that are omitted or null
will not be updated.
Static-only endpointThis endpoint supports static ads (aka regular items) only.
For motion ads(that support GIF thumbnails), see: Update a Motion Ad
Guidelines
- When updating a resource, you can use either PUT or POST.
- You can submit only the fields of interest. Fields that are omitted or
null
, will remain unchanged.- While status is CRAWLING, the Item is in a read-only state - no fields can be modified.
EXAMPLES
Updating campaign item fields
POST /backstage/api/1.0/demo-advertiser/campaigns/1234/items/123
{
"title": "Updated Title",
"thumbnail_url": "http://cdn.example.com/updated_demo_image.jpg"
}
Pausing a campaign item
To pause (or unpause) an Item, update the Item, and set is_active
to false (or true).