Get call
curl --request GET \
--url https://api.voxworks.ai/api/v1/get-call/{call_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.voxworks.ai/api/v1/get-call/{call_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.voxworks.ai/api/v1/get-call/{call_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"call": {
"id": "<string>",
"team_id": "<string>",
"contact_id": "<string>",
"script_id": "<string>",
"type": "<string>",
"status": "<string>",
"progress": "<string>",
"scheduled_time": "2023-11-07T05:31:56Z",
"actual_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"duration": 123,
"end_reason": "<string>",
"call_summary": "<string>",
"structured_data": {},
"transcript": "<string>",
"recording_url": "<string>",
"objectives": [
{}
]
}
}{
"success": false,
"message": "Invalid API key"
}{
"success": false,
"message": "<string>"
}{
"success": false,
"message": "Rate limit exceeded"
}{
"success": false,
"message": "Internal server error"
}Calls
Get call
Retrieve a call by ID. Only calls belonging to your team are returned.
GET
/
api
/
v1
/
get-call
/
{call_id}
Get call
curl --request GET \
--url https://api.voxworks.ai/api/v1/get-call/{call_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.voxworks.ai/api/v1/get-call/{call_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.voxworks.ai/api/v1/get-call/{call_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"call": {
"id": "<string>",
"team_id": "<string>",
"contact_id": "<string>",
"script_id": "<string>",
"type": "<string>",
"status": "<string>",
"progress": "<string>",
"scheduled_time": "2023-11-07T05:31:56Z",
"actual_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"duration": 123,
"end_reason": "<string>",
"call_summary": "<string>",
"structured_data": {},
"transcript": "<string>",
"recording_url": "<string>",
"objectives": [
{}
]
}
}{
"success": false,
"message": "Invalid API key"
}{
"success": false,
"message": "<string>"
}{
"success": false,
"message": "Rate limit exceeded"
}{
"success": false,
"message": "Internal server error"
}⌘I

