Returns the routing availability for all users. Used by a dispatcher to check which agents are currently available to pick up a ticket.
curl --request GET \
--url https://demo.enneo.ai/api/mind/telephony/routingAvailability
{
"success": true,
"users": [
{
"id": 42,
"status": "<string>",
"chatRoutingStatus": "idle",
"callRoutingStatus": "idle",
"skills": {
"tagIds": [
1,
2,
3
],
"channels": [
"email",
"phone",
"chat"
]
},
"currentTickets": [
123,
456
],
"lastActivity": "2024-03-20 14:30:00"
}
]
}
Cookie-based authentication
Successful operation
The response is of type object
.
curl --request GET \
--url https://demo.enneo.ai/api/mind/telephony/routingAvailability
{
"success": true,
"users": [
{
"id": 42,
"status": "<string>",
"chatRoutingStatus": "idle",
"callRoutingStatus": "idle",
"skills": {
"tagIds": [
1,
2,
3
],
"channels": [
"email",
"phone",
"chat"
]
},
"currentTickets": [
123,
456
],
"lastActivity": "2024-03-20 14:30:00"
}
]
}