Retrieve a creative

GET/ads/{connection_id}/creative/{id}

Parameters

fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
idstring required
ID of the Creative

Returns

idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
campaign_idstring
group_idstring
(reference to AdsGroup)
item_idstring
references Commerce Item ID (reference to CommerceItem)
organization_idstring
status enum
Valid values:
"UNSPECIFIED"
"ACTIVE"
"PAUSED"
"ARCHIVED"
"DRAFT"
creative_type enum
Valid values:
"UNSPECIFIED"
"STANDARD"
"EXPANDABLE"
"VIDEO"
"NATIVE"
hosting_source enum
Valid values:
"UNSPECIFIED"
"CM"
"THIRD_PARTY"
"HOSTED"
"RICH_MEDIA"
widthnumber
heightnumber
asset_urlsstring array
Hosted asset mode (best-effort, provider-specific
link_urlstring
Destination URL for creatives with links
bodystring
titlestring
ctastring
third_party_tagstring
vast_tag_urlstring
external_creative_referencestring
external_placement_referencestring
external_ad_referencestring
promoted array
path1string
Display URL path 1 (Microsoft RSA Path1)
path2string
Display URL path 2 (Microsoft RSA Path2)
datastring
const options = {
  method: 'GET',
  url: 'https://api.unified.to/ads/5de520f96e439b002043d8dc/creative/5de520f96e439b002043d8d8',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?