Get a single tag
Fetching tag
Getting a single tag is done by sending a GET
request to the /tags/:id
endpoint.
curl -X GET https://app.ignitevideo.cloud/api/tags/:id \
-H "Authorization: Bearer YOUR_TOKEN"
API Response
The response is a tag object or, if the tag is not found, a 404 status code with a matching error message in the body is returned.
Error response (404)
{
"errors": [
{
"message": "The requested resource could not be found.",
}
]
}