All API Operations related with tags
Last updated 8 months ago
Retrieves all tags
GET /v1/tags HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Accept: */*
OK
{ "success": true, "errors": [ "text" ], "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text" } ] }
Retrieves a single tag by its unique ID
GET /v1/tags/{id} HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Accept: */*
{ "success": true, "errors": [ "text" ], "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text" } }
Creates a new tag
POST /v1/tags HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 15 { "name": "text" }
Updates an existing tag
PUT /v1/tags/{id} HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 15 { "name": "text" }