Skip to main content
PATCH
/
v1
/
tags
/
{id}
Update a tag
curl --request PATCH \
  --url https://api.vendaze.com/v1/tags/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "color_text": "<string>",
  "color_background": "<string>"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "vip-client",
    "color_text": "#ffffff",
    "color_background": "#0085c0",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 access token.

Path Parameters

id
string<uuid>
required

UUID of the resource.

Body

application/json
name
string
Maximum string length: 30
color_text
string | null
color_background
string | null

Response

Tag updated successfully.

data
object