Skip to main content
POST
/
api
/
v1
/
contacts
/
{uuid}
/
add-tag
Assign (or re-assign) a tag to a contact
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/{uuid}/add-tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_id": 1,
  "tag_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "success": true,
  "message": "Tag added to contact successfully",
  "data": [
    "<unknown>"
  ]
}

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<uuid>
required

UUID of the contact

Body

application/json
tag_id
integer
Example:

1

tag_uuid
string<uuid>

Response

Success

success
boolean

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

Example:

true

message
string

Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.

Example:

"Tag added to contact successfully"

data
any[]