Skip to main content

Add Tags

POST /backend/leads/{id}/tags

Body Parameters

tag_ids
array
required
Array of tag IDs to add

Request Example

curl -X POST "https://api.leavo.ai/backend/leads/lead-uuid/tags" \
  -H "Authorization: Bearer your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "tag_ids": ["tag-uuid-1", "tag-uuid-2"]
  }'

Remove Tag

DELETE /backend/leads/{lead_id}/tags/{tag_id}

Request Example

curl -X DELETE "https://api.leavo.ai/backend/leads/lead-uuid/tags/tag-uuid" \
  -H "Authorization: Bearer your_api_key_here"

Response

HTTP 204 No Content