Skip to main content
GET
/
api
/
v1
/
Account
/
{auth_id}
/
Call
/
List queued calls
curl --request GET \
  --url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/ \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'
{
  "api_id": "c9527676-5839-11e1-86da-6ff39efcb949",
  "calls": [
    "eac94337-b1cd-499b-82d1-b39bca50dc31",
    "0a70a7fb-168e-4944-a846-4f3f4d2f96f1"
  ]
}
GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/?status=queued
Returns an array of call UUIDs for all calls currently in the queued state. Maximum 20 results per request.
Calls are in the “queued” state when they have been initiated but are waiting to be connected - either waiting for the destination to ring or for resources to become available.

Path parameters

ParameterTypeRequiredDescription
auth_idstringYesYour Vobiz account ID

Query parameters

ParameterTypeRequiredDescription
statusstringYesMust be set to queued to retrieve queued calls
This endpoint returns a maximum of 20 call UUIDs per request. Poll periodically if you have more than 20 queued calls.

Example request

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

Response

200 OK
{
  "api_id": "c9527676-5839-11e1-86da-6ff39efcb949",
  "calls": [
    "eac94337-b1cd-499b-82d1-b39bca50dc31",
    "0a70a7fb-168e-4944-a846-4f3f4d2f96f1"
  ]
}
FieldDescription
api_idUnique identifier for this API request
callsArray of call UUIDs for all queued calls (max 20)

Common use cases

  • Monitor queue depth and detect call backlogs.
  • Identify calls stuck in queue for troubleshooting.
  • Build queue management dashboards.
  • Cancel all queued calls in bulk during maintenance.
Use the returned call UUIDs with Retrieve a Queued Call to get details on each one, or use the Hang Up Call endpoint to cancel them.

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

Query Parameters

status
enum<string>
default:queued
required
Available options:
live,
queued

Response

200 - application/json

List of queued call UUIDs

api_id
string
required

Unique identifier for this API request

calls
string[]
required

Array of call UUIDs for all queued calls (max 20)