Skip to main content

Add Tags to Videos

This API enables you to add multiple tags to multiple videos. You would need to send an HTTP POST request to https://dev.vdocipher.com/api/videos/tags. The POST request body should include an array of videos, and an array of tags:

{
"videos":[
"{{videoID1}}",
"{{videoID2}}"
],
"tags":[
"{{tag1}}",
"{{tag2}}"
]
}

Sample Code for Adding Tags to Videos​

The sample tag is written as {{tag}}. Replace this with the desired tag.

The sample API Secret Key is a1b2c3d4e5.

curl -X POST \
https://dev.vdocipher.com/api/videos/tags \
-H 'Accept: application/json' \
-H 'Authorization: Apisecret a1b2c3d4e5' \
-H 'Content-Type: application/json' \
-d '{
"videos":[
"{{videoID1}}",
"{{videoID2}}"
],
"tags":[
"{{tag}}"
]
}'