Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/placement/{id} \
--header 'Authorization: Bearer <token>'{
"results": {
"id": 18,
"title": "Footer Placement",
"activation": 0,
"enabled": false
},
"success": true
}Fetch the app placement from the given placement ID
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/placement/{id} \
--header 'Authorization: Bearer <token>'{
"results": {
"id": 18,
"title": "Footer Placement",
"activation": 0,
"enabled": false
},
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?