CreativeCreate
The request body for creating a new Creative object.
Declaration
object CreativeCreateProperties
| Name | Type | Description |
|---|---|---|
name Required | string | Name of the ad creative. |
creativeType Required | CreativeCreate.CreativeType | Type of ad creative. Determines the shape of |
creativeSpec | CreativeCreate.CreativeSpec | Provide the matching spec object for the ad creative type being created. Required when |
destination Required | CreativeCreate.Destination | The post-tap landing experience. For App Store placements, include |
Discussion
Creating an ad creative defines the visual presentation and destination for an ad, before you ever attach it to an ad group. An ad creative isn’t tied to a campaign or ad group at creation, so you can reuse the same ad creative across multiple ads later.
Pick creativeType before filling in creativeSpec and destination, since it determines the required shape of both.
Example
{
"name": "AwayFinder - Summer Campaign Creative",
"creativeType": "CUSTOM_PRODUCT_PAGE",
"creativeSpec": {},
"destination": {
"destinationType": "APP_STORE_PRODUCT_PAGE",
"parameters": {
"adamId": "987654321",
"productPageId": "76659d7a-d146-43d3-b6b8-b7a12f74bf6b"
}
}
}