API Reference
GuidesAPI ReferenceSign In
  • Introduction
  • Authentication
  • Scopes
  • Errors
  • Endpoints
    • Accounts & Transactions
    • Customers & Suppliers
    • Expenses
    • Income
    • Payments
    • Products & Services
    • Projects
    • Tags
    • Taxes
  • Common Models
    • Countries
    • Currencies
Powered by GitBook
On this page
  1. Endpoints

Tags

All API Operations related with tags

PreviousProjectsNextTaxes

Last updated 9 months ago

READ Scope

WRITE Scope

UPDATE 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"
  }
}
  • READ Scope
  • GETList all Tags
  • GETGet a Tag by ID
  • WRITE Scope
  • POSTCreate a new Tag
  • UPDATE Scope
  • PUTUpdate Tag

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 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"
  }
}