cURL
curl --request POST \ --url https://connvo-dev.convex.cloud/api/run/meetings/lifecycle/createMeeting \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "args": { "title": "Quarterly Planning Meeting", "description": "Planning the roadmap for next quarter objectives.", "scheduledAt": 1704067200000, "duration": 3600, "participantEmails": [ "[email protected]", "[email protected]" ], "recordingEnabled": false, "transcriptionEnabled": true, "meetingType": "small-group", "maxParticipants": 8 } } '
{ "status": "success", "errorMessage": "", "errorData": {}, "value": { "meetingId": "meeting_123example", "webrtcReady": true, "videoProvider": "webrtc", "features": { "recording": false, "transcription": true, "maxParticipants": 8 } } }
Creates a new meeting with comprehensive setup and hybrid video provider support.
Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.
Authorization: Bearer <user-token>
Show child attributes
Convex executed your request and returned a result
success
error