v2.0.0
The v2 API
- 8new
The first tagged release of the v2 API. It covers sending bots to Zoom, Google Meet and Microsoft Teams meetings, scheduling them ahead of time, connecting a calendar so bots follow your meetings automatically, and receiving recordings and transcripts over webhooks.
New Features
POST /v2/botssends a bot to a meeting, andPOST /v2/bots/batchsends up to a whole batch in one request. See Sending a bot.GET /v2/botslists your bots,GET /v2/bots/{bot_id}returns one bot's details andGET /v2/bots/{bot_id}/statusits current status.- In-meeting controls while a bot is running:
POST /v2/bots/{bot_id}/leave,/pause-recording,/resume-recordingand/send-chat-message. - Scheduled bots:
POST /v2/bots/scheduledand/scheduled/batchto book a bot in advance, withGET,PATCHandDELETEon/v2/bots/scheduled/{bot_id}. - Calendar integration under
/v2/calendars— connect a calendar, list events and series, sync on demand, and attach or detach a bot from an event. See Calendars. - Zoom credentials under
/v2/zoom-credentialsfor recording Zoom meetings through the Zoom SDK. - Webhooks for
bot.status_change,bot.completedandbot.failed, so you learn when a bot changes state and when its recording and transcript are ready. See Webhooks. - Data deletion on request with
DELETE /v2/bots/{bot_id}/delete-data, plusPOST /v2/bots/{bot_id}/resend-webhookand/retry-callbackto re-deliver a result you missed.