Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a Video Demand Tag

First create your video in SpringServe and then creative as outlined above. Then create a Creative Asset demand tag (demand_class 4) demand tagwith the id of the video that you just created.

REST API

POST /api/v0/demand_tags

...

{
"name": "VIDEO Demand Tag",
"video_id": <id>,
"video_landing_page_url": "https://mylandingpage.com",
"demand_class": 4
}

SDK

Code Block
 respdt = springserve.demand_tags.new({"name": "VIDEO Demand Tag","video_id": <id>,"video_landing_page_url":"https://mylandingpage.com","demand_class": 4})

...