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