Stop an active recording on an in-progress call.
curl --request DELETE \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Record/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Record/
callback_url, it will be invoked with the recording details.| Parameter | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your Vobiz authentication ID |
call_uuid | string | Yes | Unique identifier of the call being recorded |
| Field | Type | Required | Description |
|---|---|---|---|
URL | string | No | The recording URL to stop. If omitted, all active recordings on the call are stopped. |
url returned by the Start Recording response. Omit it to stop all ongoing recordings.curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Record/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
HTTP Status Code: 204
204 status code means the recording has been stopped and will be finalized. There is no response body.
Was this page helpful?
curl --request DELETE \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Record/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'