Authorizations
Response
Successfully retrieved organization tags
Array of all organization tags
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
}
]
}
Retrieve all custom tags defined for the organization
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
}
]
}
Successfully retrieved organization tags
Array of all organization tags
Show child attributes