All API Operations related with tags
Last updated 6 months ago
Retrieves all tags
/v1/tags
curl -L \ --url 'https://api.nuvio.io/v1/tags' \ --header 'Authorization: YOUR_API_KEY'
{ "success": true, "errors": [ "text" ], "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text" } ] }
Retrieves a single tag by its unique ID
/v1/tags/{id}
curl -L \ --url 'https://api.nuvio.io/v1/tags/{id}' \ --header 'Authorization: YOUR_API_KEY'
{ "success": true, "errors": [ "text" ], "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text" } }
Creates a new tag
curl -L \ --request POST \ --url 'https://api.nuvio.io/v1/tags' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text" }'
Updates an existing tag
curl -L \ --request PUT \ --url 'https://api.nuvio.io/v1/tags/{id}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text" }'