Update Call Disposition
Update a call disposition, such as rescheduling a callback.
PUT
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 to update.
Request Body
scheduledAtstringNew scheduled callback time in ISO format.
statusstringUpdated status for the disposition.
notesstringUpdated notes for the disposition.
Response Fields
successbooleanWhether the update was successful.
dispositionobjectThe updated disposition object.
{
"success": true,
"disposition": {
"_id": "665a1b2c3d4e5f6a7b8c9d0e",
"phoneNumber": "+14155551234",
"disposition": "callback_scheduled",
"status": "pending",
"scheduledAt": "2024-06-03T10:00:00.000Z",
"attempt": 1
}
}