curl --request GET \
--url https://demo.enneo.ai/api/mind/profiles/onlineSummary \
--header 'Authorization: Bearer <token>'{
"success": true,
"total": 42,
"preview": [
{
"id": 12,
"name": "Alice Smith"
}
],
"byType": {
"user": 35,
"enneo": 4,
"serviceWorker": 2
},
"telephony": {
"currentLiveCalls": 3,
"currentInQueue": 7
}
}Compact summary of users who were active in the last 10 minutes, broken
down by user type, plus current live-call and in-queue counters from ACD.
Used by the admin portal for concurrent-user monitoring; replaces the
deprecated ?lastSeen=online summary fast-path on GET /profiles.
Requires readUserLastSeenDate or readAnyUserProfile.
curl --request GET \
--url https://demo.enneo.ai/api/mind/profiles/onlineSummary \
--header 'Authorization: Bearer <token>'{
"success": true,
"total": 42,
"preview": [
{
"id": 12,
"name": "Alice Smith"
}
],
"byType": {
"user": 35,
"enneo": 4,
"serviceWorker": 2
},
"telephony": {
"currentLiveCalls": 3,
"currentInQueue": 7
}
}Documentation Index
Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt
Use this file to discover all available pages before exploring further.
JWT-based authentication
Successful operation
true
Total number of users active in the last 10 minutes
42
Up to 10 users sorted by name
Show child attributes
Count of online users grouped by authData.type
Show child attributes
{
"user": 35,
"enneo": 4,
"serviceWorker": 2
}Show child attributes