Page Summary
-
CreativeAsset details a creative asset that will be shown on a screen, including its name, external ID, suspended status, creative ID, video transcodes, creative type, and an expiring URI for download.
-
An ExpiringUri provides a temporary URI for downloading a creative asset with a specified expiration time.
-
Transcode represents video transcode information, including MIME type, dimensions, bit rate, frame rate, audio bit rate, audio sample rate, file size, and a serving URI.
-
The available methods for creative assets include retrieving a single asset, listing all assets, and updating an existing asset.
Resource: CreativeAsset
Details (specific to each seller) about a creative asset that will be shown on a screen.
| JSON representation |
|---|
{ "name": string, "externalId": string, "suspended": boolean, "creativeId": string, "videoTranscodes": [ { object ( |
| Fields | |
|---|---|
name |
The resource name of the creative asset in the format: |
externalId |
Seller-managed ID presumably in their own system. Once set unlikely to change. |
suspended |
Output only. Whether the creative is suspended by the buyer or by the system. |
creativeId |
Output only. DV360 creative ID. |
videoTranscodes[] |
Output only. List of transcodes for video creatives. |
creativeType |
Output only. The type of the creative. |
expiringUri |
Output only. The URI used to download the creative asset before expireTime. |
ExpiringUri
| JSON representation |
|---|
{ "uri": string, "expireTime": string } |
| Fields | |
|---|---|
uri |
The URI of the creative asset that is valid before expireTime. |
expireTime |
The expiration time after which the URI is no longer valid. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
Transcode
Represent the video transcode information.
| JSON representation |
|---|
{ "mimeType": string, "widthPixels": integer, "heightPixels": integer, "bitRate": string, "frameRate": number, "audioBitRate": string, "audioSampleRate": string, "fileSizeBytes": string, "uri": string } |
| Fields | |
|---|---|
mimeType |
The MIME type of the transcoded file. |
widthPixels |
Width of the transcode in pixels. |
heightPixels |
Height of the transcode in pixels. |
bitRate |
The transcoding bit rate of the transcoded video, in kbps. |
frameRate |
The frame rate of the transcoded video, in fps. |
audioBitRate |
The bit rate for the audio stream of a transcoded video for video asset, or the bit rate for the transcoded audio for audio asset, in kbps. |
audioSampleRate |
The sample rate for the audio stream of a transcoded video for video asset, or the sample rate for the transcoded audio for audio asset, in Hz. |
fileSizeBytes |
The size of the transcoded file, in bytes. |
uri |
The serving uri of the asset. |
Methods |
|
|---|---|
|
Retrieves an individual creative asset. |
|
Lists creative assets. |
|
Updates an existing creative asset. |