Get creative-confirmation card for a campaign
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/campaigns/{campaignId}/creative-confirmation \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/campaigns/{campaignId}/creative-confirmation"
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/campaigns/{campaignId}/creative-confirmation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"coverage": {
"total_placements": 0,
"covered_placements": 0
},
"files": [
{
"file_id": "<string>",
"filename": "<string>",
"detected": {
"dimensions": "<string>",
"duration": "<string>",
"codec": "<string>",
"bitrate": "<string>",
"frameRate": "<string>",
"sampleRate": "<string>",
"container": "<string>",
"fileSize": "<string>",
"tagType": "<string>"
},
"suggestion": "<string>",
"format_incompatible": "<string>",
"preview_url": "<string>",
"message": "<string>",
"suggestions": [
"<string>"
],
"accepts_context": true,
"placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"product_name": "<string>"
}
]
}
],
"campaign_id": "<string>",
"campaign_name": "<string>",
"missing_placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"spec_label": "<string>",
"product_name": "<string>"
}
],
"available_placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"spec_label": "<string>",
"product_name": "<string>"
}
],
"truncated": true,
"unreadable_placements": 4503599627370496,
"skipped_files_notice": "<string>",
"skipped_files": [
"<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-confirmation card for a campaign
Buyer-creative-v2 (feature-flagged). Returns the campaign’s creatives with recognized status plus real format coverage, for the in-chat “here’s what I added” card. Read-only — does not attach anything. Returns 404 for callers not enrolled in the flag.
GET
/
campaigns
/
{campaignId}
/
creative-confirmation
Get creative-confirmation card for a campaign
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/campaigns/{campaignId}/creative-confirmation \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/campaigns/{campaignId}/creative-confirmation"
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/campaigns/{campaignId}/creative-confirmation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"coverage": {
"total_placements": 0,
"covered_placements": 0
},
"files": [
{
"file_id": "<string>",
"filename": "<string>",
"detected": {
"dimensions": "<string>",
"duration": "<string>",
"codec": "<string>",
"bitrate": "<string>",
"frameRate": "<string>",
"sampleRate": "<string>",
"container": "<string>",
"fileSize": "<string>",
"tagType": "<string>"
},
"suggestion": "<string>",
"format_incompatible": "<string>",
"preview_url": "<string>",
"message": "<string>",
"suggestions": [
"<string>"
],
"accepts_context": true,
"placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"product_name": "<string>"
}
]
}
],
"campaign_id": "<string>",
"campaign_name": "<string>",
"missing_placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"spec_label": "<string>",
"product_name": "<string>"
}
],
"available_placements": [
{
"placement_id": "<string>",
"placement_name": "<string>",
"spec_label": "<string>",
"product_name": "<string>"
}
],
"truncated": true,
"unreadable_placements": 4503599627370496,
"skipped_files_notice": "<string>",
"skipped_files": [
"<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
Path Parameters
Response
Get creative-confirmation card for a campaign
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Required range:
1 <= x <= 9007199254740991⌘I