GET
/
v1
/
get-call
/
{call_id}
curl --request GET \
  --url https://client-api.tryvox.co/v1/get-call/{call_id} \
  --header 'Authorization: Bearer <token>'
{
  "agent_id": "<string>",
  "call_id": "<string>",
  "call_type": "inbound",
  "call_from": "<string>",
  "call_to": "<string>",
  "dynamic_variables": {},
  "metadata": {},
  "recording_url": "<string>",
  "transcript": [
    {
      "role": "agent",
      "content": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

대시보드에서 발급받은 API 키를 인증 헤더에 포함시켜야 합니다. 형식은 "Bearer YOUR_API_KEY" 입니다.

Path Parameters

call_id
string
required

조회할 통화의 고유 ID입니다. UUID v4 형식입니다.

Response

200
application/json
Successful Response

The response is of type object.