GET
/
tags
cURL
curl --request GET \
  --url https://api.attent.app/v1/tags \
  --header 'x-api-key: <api-key>'
{
  "tags": [
    {
      "id": "tag-uuid-1",
      "name": "High Priority",
      "color": "#FF0000",
      "condition": "When the customer mentions an urgent issue",
      "isManual": true
    },
    {
      "id": "tag-uuid-2",
      "name": "VIP Customer",
      "color": "#00FF00",
      "condition": "If the customer has made purchases over $10,000",
      "isManual": false
    },
    {
      "id": "tag-uuid-3",
      "name": "Follow Up",
      "color": "#0000FF",
      "isManual": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Response

Successfully retrieved organization tags

tags
object[]

Array of all organization tags