Skip to main content
DELETE
/
api
/
v1
/
Account
/
{auth_id}
/
Conference
/
{conference_name}
/
Record
Stop conference recording
curl --request DELETE \
  --url https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/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}/Conference/{conference_name}/Record/
Stop an active conference recording. Once stopped, the recording is finalized and becomes available for download.
After stopping, the recording file may take a few moments to process. The file will remain accessible per your account retention policy.
If no recording is active for the specified conference, this call returns an error. Recordings are also automatically stopped when a conference ends.

Path parameters

ParameterTypeRequiredDescription
auth_idstringYesYour Vobiz account ID
conference_namestringYesName of the conference

Request body

No request body required.

Example request

curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Record/ \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"

Response

204 No Content
HTTP Status Code: 204
A 204 response indicates the recording was stopped successfully. The recording file is available at the URL returned by Start Recording, or via the recording_callback_url if configured.
Download recordings immediately to your own storage. Implement retry logic for download failures and verify recording duration matches expected conference length.

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

conference_name
string
required

Response

204

Recording stopped