Delete a Transcript
Permanently remove a transcript from your project. This action cannot be undone.
Request Body
| Parameter | Type | Description |
|---|---|---|
| idrequired | string | The 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
| Parameter | Type | Description |
|---|---|---|
| success | boolean | Identifies if the deletion was successful. |
Example Response
json
{
"success": true
}