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>"
}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>"
}Unique call identifier
Returns the call details
Unknown, Created, Pending, Queued, Completed, Failed, Canceled, Running Was this page helpful?