curl --request POST \
--url https://api.example.com/tags/{content_type}/{id} \
--header 'Content-Type: application/json' \
--data '
{
"tags": [
"<string>"
]
}
'{
"success": true
}Add tags to a specific content item (frame or audio chunk).
curl --request POST \
--url https://api.example.com/tags/{content_type}/{id} \
--header 'Content-Type: application/json' \
--data '
{
"tags": [
"<string>"
]
}
'{
"success": true
}Was this page helpful?