Get creative dashboard URL
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/creative-dashboard-url \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/creative-dashboard-url"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/creative-dashboard-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Creatives
Get creative dashboard URL
Returns a fully-resolved URL to the Interchange creative dashboard scoped to the provided advertiser, campaign, and optionally a specific creative manifest. Pass all three IDs to deep-link directly to a manifest; omit manifestId to land at the campaign level; omit campaignId to land at the advertiser level.
GET
/
creative-dashboard-url
Get creative dashboard URL
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/creative-dashboard-url \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/creative-dashboard-url"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/buyer/creative-dashboard-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Authorizations
API key or access token
Query Parameters
Advertiser ID. Narrows the URL to the advertiser level.
Required range:
1 <= x <= 9007199254740991Campaign ID. Requires advertiserId. Narrows the URL to the campaign level.
Creative manifest ID. Requires both advertiserId and campaignId. Deep-links to a specific creative.
Response
Get creative dashboard URL
Fully-resolved Interchange creative dashboard URL.