Skribby
API Reference

Stop Bot

POST/bot/{id}/stop
https://platform.skribby.io/api/v1/bot/{id}/stop

Stop a running meeting bot. This will cause the bot to leave the meeting and begin processing the recording.

Path Parameters

NameTypeDescription
idrequired
string<uuid>Bot ID

Responses

messagestring
Example: "Meeting bot is shutting down."

Request

curl -X POST \
  "https://platform.skribby.io/api/v1/bot/{id}/stop" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

200 OKapplication/json
{
  "message": "Meeting bot is shutting down."
}