Delete a Transcript

Permanently remove a transcript from your project. This action cannot be undone.

Request Body

ParameterTypeDescription
idrequiredstringThe transcript's internal ID as returned by Create or List. Can also be passed as a query parameter: ?id=...
DELETE
https://bgplus.robbiee.com/api/v1/delete

Headers

x-api-token: your_api_token

Body (Raw JSON)

json
{
  "id": "{transcript_id}"
}

Response Body

ParameterTypeDescription
successbooleanIdentifies if the deletion was successful.

Example Response

json
{
  "success": true
}