Skip to main content

Endpoint

GET /backend/tags

Request Example

curl -X GET "https://api.leavo.ai/backend/tags" \
  -H "Authorization: Bearer your_api_key_here"

Response

{
  "success": true,
  "data": [
    {
      "id": "uuid-1",
      "name": "VIP",
      "color": "#F59E0B"
    },
    {
      "id": "uuid-2",
      "name": "Hot Lead",
      "color": "#EF4444"
    },
    {
      "id": "uuid-3",
      "name": "Partner",
      "color": "#10B981"
    }
  ]
}