Call Reviews

List call reviews

Returns a paginated list of call reviews with their per-question answers, ordered by creation date descending. Optionally filter by createdOn date range.

get/call-reviews

Query parameters

pageinteger

Page number (1-based)

Example:1

Page number (1-based)

sizeinteger

Number of items per page

Example:25

Number of items per page

startDateTimestring date-time

Inclusive lower bound on createdOn (ISO 8601). Filters reviews created at or after this instant.

Example:2026-01-01T00:00:00.000Z

Inclusive lower bound on createdOn (ISO 8601). Filters reviews created at or after this instant.

endDateTimestring date-time

Inclusive upper bound on createdOn (ISO 8601). Filters reviews created at or before this instant.

Example:2026-12-31T23:59:59.999Z

Inclusive upper bound on createdOn (ISO 8601). Filters reviews created at or before this instant.

order'asc' | 'desc'

Sort direction on createdOn. Defaults to desc (newest first). Use asc for forward-only incremental syncs.

Example:desc

Sort direction on createdOn. Defaults to desc (newest first). Use asc for forward-only incremental syncs.

Response

Paginated list of call reviews

Example response

{
  "data": [
    {
      "id": 1024,
      "callId": 55555,
      "template": {
        "id": 12,
        "title": "Cold Calling"
      },
      "revieweeId": 88,
      "rating": 3.2,
      "createdById": 42,
      "createdOn": "2026-06-15T14:30:00.000Z",
      "modifiedOn": "2026-06-15T14:35:00.000Z",
      "answers": [
        {
          "id": 42,
          "question": {
            "id": 500,
            "title": "Intro (timing, why, agenda)"
          },
          "rating": 3,
          "feedback": "Handled objection cleanly."
        }
      ]
    }
  ],
  "pagination": {
    "page": 1,
    "size": 25,
    "total": 100
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.