Get Call Disposition
Retrieve a specific call disposition by its ID.
GET
Headers
x-api-keystringrequiredAPI key used for authenticating requests to the API.
x-workspace-idstringrequiredWorkspace identifier for the API.
Path Parameters
idstringrequiredThe unique identifier of the call disposition.
Response Fields
_idstringUnique identifier for the disposition.
phoneNumberstringPhone number associated with the disposition.
dispositionstringDisposition type (e.g., "callback_scheduled", "no_answer", "completed").
statusstringCurrent status of the disposition.
scheduledAtstringScheduled callback time (if applicable).
attemptnumberAttempt number for this call.
agentIdstringAgent ID that handled the call.
batchIdstringBatch call ID (if part of a batch).
notesstringAny notes from the call or disposition.
{
"_id": "665a1b2c3d4e5f6a7b8c9d0e",
"phoneNumber": "+14155551234",
"disposition": "callback_scheduled",
"status": "pending",
"scheduledAt": "2024-06-02T14:00:00.000Z",
"attempt": 1,
"agentId": "665a1b2c3d4e5f6a7b8c9d0f",
"batchId": "665a1b2c3d4e5f6a7b8c9d10",
"notes": "Customer requested callback after 2pm",
"createdAt": "2024-06-01T10:00:00.000Z"
}