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.
Query parameters
Page number (1-based)
Page number (1-based)
Number of items per page
Number of items per page
Inclusive lower bound on createdOn (ISO 8601). Filters reviews created at or after this instant.
Inclusive lower bound on createdOn (ISO 8601). Filters reviews created at or after this instant.
Inclusive upper bound on createdOn (ISO 8601). Filters reviews created at or before this instant.
Inclusive upper bound on createdOn (ISO 8601). Filters reviews created at or before this instant.
Sort direction on createdOn. Defaults to desc (newest first). Use asc for forward-only incremental syncs.
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.