Read truthful live handoff and supervision prerequisites for a call
const url = 'https://api.vocapable.com/v1/calls/example/handoff-readiness';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/calls/example/handoff-readiness \ --header 'Authorization: Bearer <token>'Return a conservative capability answer; never imply carrier media exists.
It intentionally yields 200 with active: false for an absent/expired call rather
than using the permanent calls resource as a live-state oracle. A caller can poll
this during a conversation without learning whether an arbitrary historical call id
exists, and no follow-up mutation becomes possible from this response alone.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Responses
Section titled “Responses”Successful Response
Truthful live-call capability view, not a promise that the carrier supports it.
manual_available_rep_ids is a dashboard advertisement only. It is deliberately not
called an eligible-target list: no current executor can auto-transfer a caller from a
REST heartbeat, and both live-action flags stay false until the gateway/media path exists.
object
Example
{ "transport": "phone", "state": "active"}Validation Error
object
object
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}