Concurrency
Monitor and manage the number of concurrent lines being used in your account.
Overview
The Concurrency API allows you to retrieve real-time data about how many concurrent lines are active for your account. This is essential for monitoring line utilization and ensuring you have sufficient capacity for your communication needs.
Get Concurrency
GET
https://api.vobiz.ai/api/v1/account/{auth_id}/concurrencyRetrieve the current number of concurrent lines active for a specific account.
Authentication Required:
- • X-Auth-ID: Your account ID (e.g., {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
{
"auth_id": "MA_XXXXXX",
"concurrent_calls": 5,
"max_concurrent": 100,
"utilization_pct": 5.0,
"timestamp": "2024-03-21T10:30:00Z",
"request_id": "req_883ee377-4085-465f-97c2-e1c67c50aab9"
}