Skip to main content
POST
/
api
/
v1
/
contacts
/
{uuid}
/
add-tag
Add tag to contact
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/contacts/{uuid}/add-tag \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tag_id": 1
}'
{
  "success": true,
  "message": "Tag added to contact successfully",
  "data": [
    "<any>"
  ]
}

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

Response

Success

success
boolean
Example:

true

message
string
Example:

"Tag added to contact successfully"

data
any[]