Saltar al contenido principal
GET
/
v1
/
recording
/
{call_id}
Get Recording
import requests

url = "http://localhost:3000/v1/recording/{call_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "recording_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

call_id
string<uuid>
required

The unique identifier for the call

Response

Successful Response

recording_url
string
required

The URL to the recording of the call