List all creatives

GET/ads/{connection_id}/creative

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
org_idstring
The org ID to filter by (reference to AdsOrganization)
group_idstring
The group ID to filter by (reference to AdsGroup)
statusstring
The status to filter by
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

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',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-12T16:16:52.984Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    org_id: '',
    group_id: '',
    status: '',
    fields: '',
    raw: '',
  }
};

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