Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organisation ID
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id}/mapping \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 626,
"platform": "rubicon",
"platform_name": "Magnite/Rubicon",
"logo": "https://cdn.tagdeliver.com/assets/logo/rubicon.svg",
"logo_dark": "https://cdn.tagdeliver.com/assets/logo/rubicon--dark.svg",
"account_name": "Content Ignite",
"field_schema": {
"type": "object",
"properties": {
"mapping.626": {
"title": "Site ID",
"type": "integer",
"readOnly": true
}
}
},
"field_value": null
},
{
"id": 789,
"platform": "ga",
"platform_name": "Google Analytics (GA4)",
"logo": "https://cdn.tagdeliver.com/assets/logo/ga.svg",
"logo_dark": "https://cdn.tagdeliver.com/assets/logo/ga--dark.svg",
"account_name": "Demo Ltd",
"field_schema": {
"type": "object",
"properties": {
"mapping.789": {
"title": "Property ID",
"type": "string"
}
}
},
"field_value": null
}
],
"success": true
}Fetches all integrations that suport organisation mapping, the schemas and the data for each
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id}/mapping \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 626,
"platform": "rubicon",
"platform_name": "Magnite/Rubicon",
"logo": "https://cdn.tagdeliver.com/assets/logo/rubicon.svg",
"logo_dark": "https://cdn.tagdeliver.com/assets/logo/rubicon--dark.svg",
"account_name": "Content Ignite",
"field_schema": {
"type": "object",
"properties": {
"mapping.626": {
"title": "Site ID",
"type": "integer",
"readOnly": true
}
}
},
"field_value": null
},
{
"id": 789,
"platform": "ga",
"platform_name": "Google Analytics (GA4)",
"logo": "https://cdn.tagdeliver.com/assets/logo/ga.svg",
"logo_dark": "https://cdn.tagdeliver.com/assets/logo/ga--dark.svg",
"account_name": "Demo Ltd",
"field_schema": {
"type": "object",
"properties": {
"mapping.789": {
"title": "Property ID",
"type": "string"
}
}
},
"field_value": null
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Organisation ID
Was this page helpful?