Skribby
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

NameTypeDescription
idrequired
string<uuid>Bot ID

Responses

messagestring
Example: "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."
}