Update a Campaign Item

Submit a JSON object in a PUT or POST request body. Fields that are omitted or null will not be updated.

🚧

Static-only endpoint

This endpoint supports static ads (aka regular items) only.

For motion ads(that support GIF thumbnails), see: Update a Motion Ad

πŸ“˜

Guidelines

  1. When updating a resource, you can use either PUT or POST.
  2. You can submit only the fields of interest. Fields that are omitted or null, will remain unchanged.
  3. 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).

See: Pausing/unpausing Campaign Items

Language
Credentials
OAuth2