delete_bot_data
Remove all data linked to a bot, including recordings and transcripts, in the Attendee MCP Server by specifying the bot ID.
Instructions
Delete all data associated with a bot (recordings, transcripts, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot to delete data for |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot to delete data for",
"type": "string"
}
},
"required": [
"bot_id"
],
"type": "object"
}