Referência/Calls/getActiveCalls
Calls

Inspect active call slots

Returns the in-memory concurrent-call slots for the instance after runtime reconciliation. Does not expose credentials, media, SRTP keys or tokens.

Pro
GEThttp://localhost:8084/call/{instanceName}/active

Autenticação

InstanceBearerobrigatório

JWT HS256 da própria instância.

Header
Authorization
Exemplo
Bearer <INSTANCE_TOKEN>

Parâmetros

instanceNamepathobrigatório
string

Nome publico da instancia

minLength 1

Respostas

application/json
200

Active call slots

response 200object
instanceobjectobrigatório
idstringobrigatório
namestringobrigatório
limitintegerobrigatório
activeCountintegerobrigatório
callsarrayobrigatório
items[]object
idstringobrigatório
providerCallIdstring
statusenum<INCOMING | OUTGOING | RINGING | PREACCEPTED | CONNECTING | ACTIVE | ENDING | ENDED | ENDED_UNCONFIRMED | REJECTED | MISSED | BUSY | FAILED | INTERRUPTED | ANSWERED_ELSEWHERE | REJECTED_ELSEWHERE>
directionenum<incoming | outgoing>
startedAtstringformat: date-time
endingbooleanobrigatório
sourcestringobrigatório
Exemplo 200gerado do schema
{
"instance": {
"id": "string",
"name": "CodeChat"
},
"limit": 1,
"activeCount": 1,
"calls": [
{
"id": "string",
"providerCallId": "string",
"status": "INCOMING",
"direction": "incoming",
"startedAt": "2026-07-13T15:10:00Z",
"ending": true,
"source": "string"
}
]
}