API Reference
Delete Bot Data
DELETE
/bot/{id}https://platform.skribby.io/api/v1/bot/{id}Delete all data related to the bot, including transcription and recording. Bots can only be deleted if they are scheduled or not in an active state (`booting`, `joining`, `recording`, `processing` or `transcribing`). Be aware, this action is not reversible!
Path Parameters
| Name | Type | Description |
|---|---|---|
idrequired | string<uuid> | Bot ID |
Responses
messagestringExample:
"Meeting bot deleted successfully."Request
curl -X DELETE \
"https://platform.skribby.io/api/v1/bot/{id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response
200 OKapplication/json
{
"message": "Meeting bot deleted successfully."
}