Skip to main content
GET
/
api
/
v1
/
account
/
{auth_id}
/
concurrency
Get concurrency limits
curl --request GET \
  --url https://api.vobiz.ai/api/v1/account/{auth_id}/concurrency \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'
{
  "account_id": "MA_XXXXXXXX",
  "concurrent_calls": 0,
  "max_concurrent": 46,
  "utilization_pct": 0,
  "request_id": "aabbccdd1234567890abcdef12345678"
}

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.

Overview

The Concurrency API lets you retrieve real-time data about how many concurrent lines are active for your account. Use it to monitor line utilization and ensure you have sufficient capacity.

Get Concurrency

GET https://api.vobiz.ai/api/v1/account/{auth_id}/concurrency
Returns the current number of concurrent lines active for a specific account.
Authentication required:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json

Request

cURL
curl -X GET "https://api.vobiz.ai/api/v1/Account/YOUR_AUTH_ID/concurrency" \
--header 'X-Auth-ID: YOUR_AUTH_ID' \
--header 'X-Auth-Token: YOUR_AUTH_TOKEN' \
--header 'Accept: application/json'

Response

JSON Response
{
    "account_id": "MA_XXXXXXXX",
    "concurrent_calls": 0,
    "max_concurrent": 50,
    "utilization_pct": 0,
    "request_id": "oRGnfwRIsamKQxfZLHwksPZKOKlQnCup"
}

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"

Response

200 - application/json

Concurrency info

account_id
string
required
concurrent_calls
integer
required
max_concurrent
integer
required
utilization_pct
integer
required
request_id
string
required