Skip to main content
DELETE
/
recordings
/
{id}
curl -X DELETE https://api.bota.dev/v1/recordings/rec_abc123 \
  -H "Authorization: Bearer sk_live_..."
// No content
Permanently delete a recording and its associated audio file and transcriptions. This action cannot be undone.

Authentication

Requires an API key with recordings:write scope.
curl -X DELETE https://api.bota.dev/v1/recordings/rec_abc123 \
  -H "Authorization: Bearer sk_live_..."

Path Parameters

id
string
required
The recording’s unique identifier (e.g., rec_abc123).

Response

Returns 204 No Content on success.
// No content
This action permanently deletes the recording, its audio file from S3, and all associated transcriptions. This cannot be undone.