Contents

CreativeUpdate

The request body for updating an existing Creative object.

Declaration

object CreativeUpdate

Properties

NameTypeDescription
namestring

Name of the ad creative. Omit if you don’t intend to update. Mutable, Optional.

creativeSpecCreativeUpdate.CreativeSpec

The creative spec. Updating this may trigger re-review. systemStatus transitions back to PENDING. Omit if you don’t intend to update. Mutable, Optional.

Discussion

To change an existing ad creative’s name or creativeSpec, use CreativeUpdate with PUT /v1/creatives/{id} (Update an Ad Creative). creativeType and destination are locked in at creation and can’t be changed later.

Example

{
  "name": "AwayFinder - Summer Campaign Creative - Revised",
  "creativeSpec": {
    "localizedText": {
      "en-US": {
        "promoText": "New summer deals - shop now!"
      }
    },
    "brandId": "111222",
    "defaultLocale": "en-US"
  }
}

Topics

Dictionaries

See Also