Delete bot data
Permanently deletes all data associated with this bot, including recordings, transcripts, and participant information. Metadata is not deleted. This cannot be undone.
Path Parameters
- Type: string
object _id requiredBot ID
Headers
- Type: string
Authorization requiredAPI key for authentication
- Type: string
Content - Type requiredShould always be application/json
Responses
- application/json
400 Bot is not in a valid state for data deletion
404 Bot not found
Request Example for post/api/v1/bots/{object_id}/delete_data
curl https://app.attendee.dev/api/v1/bots/bot_xxxxxxxxxxx/delete_data \
--request POST \
--header 'Authorization: Token YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json'
{
"id": "string",
"metadata": {},
"meeting_url": "string",
"state": "ready",
"events": [
{
"type": "string",
"sub_type": null,
"created_at": "2026-04-10T17:14:55.003Z"
}
],
"transcription_state": "not_started",
"recording_state": "not_started",
"join_at": "2026-04-10T17:14:55.003Z",
"deduplication_key": "string"
}