Skip to main content
GET
/
api
/
v1
/
calls
/
{callId}
Get a specific call by ID
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/calls/{callId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "callId": "<string>",
  "orgId": "<string>",
  "agentId": "<string>",
  "endpoint": "<string>",
  "status": "Unknown",
  "recordId": "<string>",
  "completedTime": "2023-11-07T05:31:56Z",
  "inspectorUrl": "<string>"
}

Path Parameters

callId
string
required

Unique call identifier

Response

Returns the call details

callId
string | null
required
orgId
string | null
required
agentId
string | null
required
endpoint
string | null
required
status
enum<string>
Available options:
Unknown,
Created,
Pending,
Queued,
Completed,
Failed,
Canceled,
Running
recordId
string | null
completedTime
string<date-time> | null
inspectorUrl
string | null