Skip to main content
PUT
/
api
/
v1
/
contacts
/
tags
/
{uuid}
Update a tag
curl --request PUT \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/tags/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "color": "#00FF00",
  "is_active": true
}
'

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string
required

Body

application/json
name
string
Required string length: 2 - 255
description
string
Maximum string length: 255
color
string
Example:

"#00FF00"

is_active
boolean

Response

Tag updated