Get advertiser tracking configuration
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/tracking-config \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/tracking-config"
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}/tracking-config', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"advertiser_id": "12345",
"enabled_macros": [
"CAMPAIGN_ID"
],
"custom_macros": [
{
"name": "UTM_SOURCE",
"param_key": "utm_source",
"description": "Identifies the traffic source for UTM tracking"
}
],
"impression_tracker_enabled": true,
"click_tracker_enabled": true,
"custom_tracker_urls": [
{
"tracker_id": "trk_0123456789abcdef01234567",
"name": "DoubleVerify Impression",
"url": "https://tracker.doubleverify.com/pixel?id=123",
"tracker_type": "IMPRESSION",
"raw_url": "<string>",
"enabled": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"custom_event_name": "<string>",
"vendor_name": "HappyDemics",
"source_dialect": "adcp",
"compiler_version": "<string>",
"mapping_artifact": {}
}
],
"revision": 4503599627370495,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-20T14:45:00Z"
}
}{
"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": {}
}
}Advertisers
Get advertiser tracking configuration
Get advertiser-level macro and third-party tracker defaults. Raw vendor URLs and their canonical AdCP-macro translations are retained separately with stable tracker IDs.
GET
/
advertisers
/
{advertiserId}
/
tracking-config
Get advertiser tracking configuration
curl --request GET \
--url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/tracking-config \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/tracking-config"
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}/tracking-config', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"advertiser_id": "12345",
"enabled_macros": [
"CAMPAIGN_ID"
],
"custom_macros": [
{
"name": "UTM_SOURCE",
"param_key": "utm_source",
"description": "Identifies the traffic source for UTM tracking"
}
],
"impression_tracker_enabled": true,
"click_tracker_enabled": true,
"custom_tracker_urls": [
{
"tracker_id": "trk_0123456789abcdef01234567",
"name": "DoubleVerify Impression",
"url": "https://tracker.doubleverify.com/pixel?id=123",
"tracker_type": "IMPRESSION",
"raw_url": "<string>",
"enabled": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"custom_event_name": "<string>",
"vendor_name": "HappyDemics",
"source_dialect": "adcp",
"compiler_version": "<string>",
"mapping_artifact": {}
}
],
"revision": 4503599627370495,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-20T14:45:00Z"
}
}{
"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"
Response
Get advertiser tracking configuration
Response containing tracking configuration
Full tracking configuration for an advertiser
Show child attributes
Show child attributes
⌘I