Skip to main content
POST
/
api
/
v1
/
contacts
/
tags
Create a new contact tag
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "VIP",
  "description": "Important customer",
  "color": "#FF0000",
  "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}"

Body

application/json
name
string
required
Required string length: 2 - 255
Example:

"VIP"

description
string
Maximum string length: 255
Example:

"Important customer"

color
string

Hex color in #RRGGBB format

Example:

"#FF0000"

is_active
boolean
Example:

true

Response

Tag created