Skip to content

GET/v1/reports/summary/queues

Per-queue call summary KPIs for today (paginated)

Paginated per-queue metrics for the **current day** (DB `CURRENT_DATE` window). Uses the same **dashboard per-queue SQL** as `GET /v1/reports/summary/calls` (inbound/outbound union, SLA, wait/talk totals) with pagination. Response shape is **snake_case** and differs from legacy `GET /api/v1/metrics/dashboard/summary` (camelCase field names). Aggregates **all queues** permitted for the workspace — no `queue`, `agent`, or date range query parameters. Private upstream path: `/v1/reports/summary/queues`.

Parameters 2

NameTypeDescription
pagequery · integer
per_pagequery · integer

Bearer token required

Response examples

200OK

application/json example derived from schema

{
  "success_code": "OK",
  "message": "OK",
  "details": {},
  "meta": {
    "current_page": 0,
    "per_page": 0,
    "total": 0,
    "last_page": 0,
    "links": {
      "first": "string",
      "last": "string",
      "prev": "string",
      "next": "string"
    }
  }
}
400Bad Request

application/json example derived from schema

{
  "error_code": "VALIDATION_ERROR",
  "message": "string",
  "details": {}
}