Create meeting
documentedCreate a new meeting within a specific room.
POST /lucid/api/v1/rooms/{room_id}/meetingsMeetingsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://site.lucidmeetings.com/lucid/api/v1/rooms/{{$room_id}}/meetings" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"template_id":{{$template_id}}, "name":"{{$name}}", "description":"{{$description}}", "outcomes":"{{$outcomes}}", "location":"{{$location}}", "audio":"{{$audio}}", "start_time":{{$start_time}}, "end_time":{{$end_time}}, "duration_minutes":{{$duration_minutes}}, "duration_seconds":{{$duration_seconds}}, "state":"{{$state}}", "skip_attendees":{{$skip_attendees}}, "meeting_source":{{$meeting_source}} }'