Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
curl --request PUT \
--url https://api.tagdeliver.com/v1/tag/{uid}/placement/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"activation": 123
}'{
"results": {
"id": 18,
"title": "Footer Placement",
"activation": 100,
"enabled": false
},
"success": true
}Updates an existing app placement
curl --request PUT \
--url https://api.tagdeliver.com/v1/tag/{uid}/placement/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"activation": 123
}'{
"results": {
"id": 18,
"title": "Footer Placement",
"activation": 100,
"enabled": false
},
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?