Zum Hauptinhalt springen
GET
/
profiles
/
onlineSummary
Concurrent users + telephony counters (admin polling)
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.

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Antwort

Successful operation

success
boolean
Beispiel:

true

total
integer

Total number of users active in the last 10 minutes

Beispiel:

42

preview
object[]

Up to 10 users sorted by name

byType
object

Count of online users grouped by authData.type

Beispiel:
{
"user": 35,
"enneo": 4,
"serviceWorker": 2
}
telephony
object