Skip to Content

Creating a tag

Creating a tag is done by sending a POST request to the /tags endpoint.

Create tag object

curl -X POST 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", }