Create a new meeting bot to record and transcribe a meeting. Supports Zoom, Google Meet, Microsoft Teams, and Webex. The bot will join the meeting immediately or at a scheduled time.
curl -X POST https://app.mavera.io/api/v1/meetings \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"meeting_url": "https://zoom.us/j/123456789",
"title": "Sales Discovery Call",
"bot_name": "Mavera Notetaker"
}'{
"id": "<string>",
"object": "meeting",
"title": "<string>",
"meeting_url": {},
"bot_name": "<string>",
"join_type": "adhoc",
"join_at": "2023-11-07T05:31:56Z",
"status": "pending",
"platform": "zoom",
"workspace_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.mavera.io/llms.txt
Use this file to discover all available pages before exploring further.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
The meeting URL to record. Supports Zoom, Google Meet, Microsoft Teams, and Webex.
Optional title for the meeting
Name displayed when the bot joins the meeting
Schedule the bot to join at a specific time (ISO 8601 format). If not provided or in the past, the bot joins immediately.
Workspace to associate the meeting with. Uses default workspace if not specified.
Meeting bot created successfully
Unique meeting identifier
meeting Meeting URL information
Whether the bot joins immediately (adhoc) or at a scheduled time
adhoc, scheduled Scheduled join time (null for instant join)
Current status of the meeting recording
pending, joining_call, in_waiting_room, in_call_not_recording, in_call_recording, call_ended, recording_done, done, fatal, recording_permission_denied, media_expired, cancelled Meeting platform detected from URL
zoom, google_meet, microsoft_teams, webex curl -X POST https://app.mavera.io/api/v1/meetings \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"meeting_url": "https://zoom.us/j/123456789",
"title": "Sales Discovery Call",
"bot_name": "Mavera Notetaker"
}'{
"id": "<string>",
"object": "meeting",
"title": "<string>",
"meeting_url": {},
"bot_name": "<string>",
"join_type": "adhoc",
"join_at": "2023-11-07T05:31:56Z",
"status": "pending",
"platform": "zoom",
"workspace_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}