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>"
}Retrieve a call recording by its id.
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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier for the call
Successful Response
The URL to the recording of the call