Query syndication status
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/syndication-status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/syndication-status"
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/advertisers/{advertiserId}/syndication-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"id": "1",
"customerId": 0,
"advertiserId": "12345",
"resourceType": "AUDIENCE",
"resourceId": "<string>",
"audienceId": "1",
"eventSourceId": "<string>",
"catalogId": "<string>",
"adcpAgentId": "42",
"adcpAgentAccountId": "<string>",
"enabled": true,
"status": "PENDING",
"errorMessage": "<string>",
"responseData": "<unknown>",
"createdAt": "<string>",
"updatedAt": "<string>",
"completedAt": "<string>"
}
],
"total": 4503599627370495
}{
"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": {}
}
}Syndication
Query syndication status
Query syndication status records for an advertiser, with optional filtering by resource type, resource ID, ADCP agent, and enabled state.
GET
/
advertisers
/
{advertiserId}
/
syndication-status
Query syndication status
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/syndication-status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/syndication-status"
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/advertisers/{advertiserId}/syndication-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"id": "1",
"customerId": 0,
"advertiserId": "12345",
"resourceType": "AUDIENCE",
"resourceId": "<string>",
"audienceId": "1",
"eventSourceId": "<string>",
"catalogId": "<string>",
"adcpAgentId": "42",
"adcpAgentAccountId": "<string>",
"enabled": true,
"status": "PENDING",
"errorMessage": "<string>",
"responseData": "<unknown>",
"createdAt": "<string>",
"updatedAt": "<string>",
"completedAt": "<string>"
}
],
"total": 4503599627370495
}{
"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
Unique identifier for the advertiser
Minimum string length:
1Example:
"12345"
Query Parameters
Available options:
AUDIENCE, EVENT_SOURCE, CATALOG Available options:
true, false Available options:
PENDING, SYNCING, COMPLETED, FAILED, DISABLED Required range:
1 <= x <= 100Required range:
0 <= x <= 9007199254740991