Karun
11/25/2025, 9:05 AMVapi Support Bot
11/25/2025, 9:06 AMend-of-call-report webhook from Vapi for every call? This is crucial for accurate concurrency tracking and freeing up capacity.
If possible, please check your server logs for any missed or failed webhook deliveries during the affected time window.
Source:
- [Call queue management with Twilio](https://docs.vapi.ai/calls/call-queue-management)Karun
11/25/2025, 9:08 AMKarun
11/25/2025, 9:29 AMChiranjeet Mishra
11/26/2025, 5:32 PM/analytics endpoint to track historical concurrency usage and identify patterns that might necessitate increased capacity. Here's an example request for analytics:
bash
curl 'https://api.vapi.ai/analytics' \
-H 'authorization: Bearer {VAPI-PRIVATE-TOKEN}' \
-H 'content-type: application/json' \
--data-raw '{ "queries": [{ "name": "Number of Concurrent Calls", "table": "subscription", "timeRange": { "start": "2025-10-16T18:30:00.000Z", "end": "2025-11-17T05:31:10.184Z", "step": "day" }, "operations": [{ "operation": "max", "column": "concurrency", "alias": "concurrency" }] }] }'
4. **Call Creation Response**: When creating a call (POST /call), the response includes subscriptionLimits to inform about the concurrency state, such as total slots and remaining available slots.
For further details, check the documentation on [call concurrency](https://docs.vapi.ai/calls/call-concurrency).heisenberg
12/11/2025, 1:28 PM