Get real time waiting list KPI's

GET /manager/bi/realtime/requests

Responses

  • 200 application/json

    Returns all real time waiting list KPI's

    Hide response attributes Show response attributes object
    • pending_requests integer
    • total_requests integer
    • handled_requests integer
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

GET /manager/bi/realtime/requests
curl \
 --request GET 'https://domain.tld/api/v2/manager/bi/realtime/requests' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "pending_requests": 10,
  "total_requests": 10,
  "handled_requests": 10
}
Response examples (401)
{
  "message": "Unauthorized."
}