v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB
Meeting

Record a meeting

post/collection/{collection_id}/meeting/record

Path parameters

collection_idstring required
Example:default

Request body

meeting_urlstring required
bot_namestring
meeting_titlestring
time_zonestring
bot_image_urlstring
realtime_streamboolean
callback_urlstring
callback_dataobject

Example request

{
  "meeting_url": "https://meet.google.com/abc-def-ghi",
  "bot_name": "VideoDB Assistant",
  "meeting_title": "Weekly standup",
  "time_zone": "UTC",
  "bot_image_url": "https://example.com/bot-avatar.png",
  "callback_url": "https://webhook.example.com/callback"
}

Response

Meeting recording started

successboolean

Example response

{
  "success": true,
  "data": {
    "bot_id": "bot-12345"
  }
}