Getting started
APIs
Business SMS
Automation
Use cases
Create Trello Card for Voicemails Received
Send Call Data to Google Sheets
Slack Notifications from Call Events
Trigger SMS Messages from Your CRM
Recordings endpoint provides a way to access call recordings.
<aside> š” Automated API use of the Call Recordings API endpoint may cause restriction API access to the account. Please contact our team for guidance on automating management of Call Recordings.
</aside>
GET /v2/accounts/{ACCOUNT_ID}/recordings GET /v2/accounts/{ACCOUNT_ID}/users/{USER_ID}/recordings
Lists the call recording with pagination and filtering.
curl -v -X GET \\
-H "X-Auth-Token: {AUTH_TOKEN}" \\
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/recordings
GET /v2/accounts/{ACCOUNT_ID}/recordings/{RECORDING_ID}
Gets a specific recording document.
curl -v -X GET \\
-H "X-Auth-Token: {AUTH_TOKEN}" \\
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/recordings/{RECORDING_ID}
Gets a specific recording document attachment if available. Mind theĀ Accept
Ā header in example below. For clients that do not support setting theĀ Accept
Ā header, a query string parameter can be included:Ā ?accept=audio/mpeg
.
Optional parameterĀ inline
Ā can be eitherĀ true
Ā orĀ false
.
curl -v -X GET \\
-H "X-Auth-Token: {AUTH_TOKEN}" \\
-H "Accept: audio/mpeg" \\
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/recordings/{RECORDING_ID}
DELETE /v2/accounts/{ACCOUNT_ID}/recordings/{RECORDING_ID}
This will delete the metadata document. If the binary data is stored on the metadata document (instead of on a storage provider), it will also be deleted. Recordings stored on storage providers will not be deleted.
curl -v -X DELETE \\
-H "X-Auth-Token: {AUTH_TOKEN}" \\
http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/recordings/{RECORDING_ID}