Creating a tag
Creating a tag is done by sending a PUT request to the /tags endpoint.
Create tag object
curl -X PUT https://app.ignitevideo.cloud/api/tags \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "Your tag title", "slug":"your-tag-slug"}'Response
The response is the newly created tag object.
{
"id": "[TAG_ID]",
"title": "Your tag title",
"slug": "your-tag-slug",
}