Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt

Use this file to discover all available pages before exploring further.

GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/?status=queued
Retrieve information about a call that has been initiated but is not yet connected. Queued calls are waiting for the destination to answer or for resources to become available.
A call is in the “queued” state when it has been initiated via the API but has not been answered yet, including calls waiting for the destination to ring or answer.

Path parameters

ParameterTypeRequiredDescription
auth_idstringYesYour Vobiz account ID
call_uuidstringYesUnique identifier of the queued call

Query parameters

ParameterTypeRequiredDescription
statusstringYesMust be queued to retrieve queued call details
If the call is no longer queued (connected or ended), this endpoint returns a 404 error. Use the standard CDR endpoint for completed calls.

Example request

cURL
curl -X GET "https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/?status=queued" \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"

Response

200 OK
{
  "direction": "outbound",
  "from": "15856338537",
  "call_status": "queued",
  "api_id": "45223222-74f8-11e1-8ea7-12313806be9a",
  "to": "14154290945",
  "caller_name": "+15856338537",
  "call_uuid": "6653422-91b6-4716-9fad-9463daaeeec2",
  "request_uuid": "6653422-91b6-4716-9fad-9463daaeeec2"
}
FieldDescription
api_idUnique identifier for this API request
call_statusAlways queued for this endpoint
call_uuidUnique identifier for the call
request_uuidRequest identifier (same as call_uuid)
directionCall direction: outbound or inbound
fromSource phone number
toDestination phone number
caller_nameCaller ID name
Combine this endpoint with Retrieve All Queued Calls to monitor all pending calls on your account at once.