API Reference
Tags
Delete tag

Deleting a tag

Delete tag

Deleting a tag is done by sending a DELETE request to the /tags/:id endpoint.

curl -X DELETE https://app.ignitevideo.cloud/api/tags/[TAG_ID] \ 
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \

Response

The response is the now deleted tag object with a status message, or, if the tag is not found, a 404 status code with a matching error message in the body is returned.

{
  doc: {
    "id": "[TAG_ID]",
    "title": "Tag title",
    "slug": "tag-slug"
  },
  message: "Deleted successfully."
}