Tags

All API Operations related with tags

READ Scope

List all Tags

get

Retrieves all tags

Authorizations
Responses
200
OK
application/json
get
GET /v1/tags HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "errors": [
    "text"
  ],
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "text"
    }
  ]
}

Get a Tag by ID

get

Retrieves a single tag by its unique ID

Authorizations
Path parameters
idstring · uuidRequired
Responses
200
OK
application/json
get
GET /v1/tags/{id} HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "errors": [
    "text"
  ],
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text"
  }
}

WRITE Scope

Create a new Tag

post

Creates a new tag

Authorizations
Body
all ofOptional
Responses
200
OK
application/json
post
POST /v1/tags HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "name": "text"
}
200

OK

{
  "success": true,
  "errors": [
    "text"
  ],
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text"
  }
}

UPDATE Scope

Update Tag

put

Updates an existing tag

Authorizations
Path parameters
idstring · uuidRequired
Body
all ofOptional
Responses
200
OK
application/json
put
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"
}
200

OK

{
  "success": true,
  "errors": [
    "text"
  ],
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text"
  }
}

Last updated