Tag Creative API
Creating a Tag Creative
SDK
import springserve as ss
creative = ss.tag_creatives.new({
"demand_partner_id": <demand_partner_id>, #int
"name": <creative_name>, #str
"vast_endpoint_url": <vast_tag_url>, #str
})
if creative.ok:
print("Tag creative successfully created")
else:
print(tag.error)
Â
REST API
Method: POST
Endpoint: /api/v0/tag_creatives
Headers:
Content-Type application/json
Authorization "yourAuthToken"
Request Body (example):
{
"demand_partner_id": <demand_partner_id>,
"name": <creative_name>,
"vast_endpoint_url": <creative_url>
}
Â
Get a Tag Creative
SDK
REST API
Method: GET
Endpoint: /api/v0/tag_creatives/<id>
Headers:
Response Body - Status Code 200 (example):
Â
Edit a Tag Creative
SDK
Â
REST API
PUT /api/v0/tag_creatives/<id>
Headers
Request Body (example):
Response Body - Status Code 200 (example):