CreativeUpdate
The request body for updating an existing Creative object.
Declaration
object CreativeUpdateProperties
| Name | Type | Description |
|---|---|---|
name | string | Name of the ad creative. Omit if you don’t intend to update. Mutable, Optional. |
creativeSpec | CreativeUpdate.CreativeSpec | The creative spec. Updating this may trigger re-review. |
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"
}
}