Skip to content

GET/v1/reports/answered/detailed-calls

Paginated detailed answered calls with CDR timeline

Flat paginated list of answered calls aligned with legacy `GET /api/v1/metrics/answered/detailed`. Each row matches **distribution/detailed-calls** (composite answered call fields plus a **details** array of CDR timeline legs). Legs omit `date`, `queue_name`, and `queue_number`. Call rows omit `recording` / `has_expired`. Time fields use **HH:MM:SS** strings. Results are ordered by `datetime` descending, then `real_uniqueid` descending. Empty **tags** is `{}`. **event** may be null on some rows. Private upstream path: `/v1/reports/answered/detailed-calls`.

Parameters 9

NameTypeDescription
from_daterequiredquery · stringStart date (DD-MM-YYYY).
to_daterequiredquery · stringEnd date (DD-MM-YYYY).
from_timequery · stringStart time (HH-MM-SS). Defaults to start of day.

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": {}
}