Get all tags (skills, products, brands) available
curl --request GET \
--url https://demo.enneo.ai/api/mind/tag
{
"success": true,
"tags": [
{
"id": 123,
"name": "Complaint",
"fullName": "Second Level: Complaint",
"parent": 6,
"reference": "ticket",
"type": "skill",
"visibility": "public",
"color": "grey",
"properties": [],
"complexity": "moderate",
"sla": 8,
"priority": "do-not-change",
"channels": [
"email",
"chat"
],
"subchannels": [
2,
4
],
"detectionDetails": {},
"assignment": [
"assignBySubchannel",
"assignByCustomLogic"
],
"testCase": {},
"modifiedBy": "John Doe",
"modifiedAt": "2024-08-29 14:38:12"
}
]
}
Cookie-based authentication
Search for tags matching this search string
Show only tags of a specific type. If not set, shows all tags.
skill
, product
, brand
, customerProperty
, contractProperty
, other
Also include disabled intents
Level of detail of output. Defaults to full
compact
, full
Successful operation
Data format of Enneo success messages
curl --request GET \
--url https://demo.enneo.ai/api/mind/tag
{
"success": true,
"tags": [
{
"id": 123,
"name": "Complaint",
"fullName": "Second Level: Complaint",
"parent": 6,
"reference": "ticket",
"type": "skill",
"visibility": "public",
"color": "grey",
"properties": [],
"complexity": "moderate",
"sla": 8,
"priority": "do-not-change",
"channels": [
"email",
"chat"
],
"subchannels": [
2,
4
],
"detectionDetails": {},
"assignment": [
"assignBySubchannel",
"assignByCustomLogic"
],
"testCase": {},
"modifiedBy": "John Doe",
"modifiedAt": "2024-08-29 14:38:12"
}
]
}