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": [
"host@example.com",
"participant@example.com"
],
"recordingEnabled": false,
"transcriptionEnabled": true,
"meetingType": "small-group",
"maxParticipants": 8
}
}
'