kyleboe / zoom_rb

Ruby REST API Wrapper for zoom.us API
https://developers.zoom.us/docs/api/
MIT License
83 stars 104 forks source link

Add pre_schedule as an optional parameter to the meeting_create action #466

Closed kfitzpatrick closed 8 months ago

kfitzpatrick commented 8 months ago

Per https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingCreate one can add the pre_schedule: true parameter.

Currently we're using v1.1.8 of the app. Ideally we'd love to see this go into v1.1.9.

From the docs:

Whether to create a prescheduled meeting via the GSuite app. This only supports the meeting type value of 2 (scheduled meetings) and 3 (recurring meetings with no fixed time).

true - Create a prescheduled meeting. false - Create a regular meeting.Default: false

Is there a reason this was omitted other than it's not commonly used?

Thanks!

eserra commented 8 months ago

👍

kyleboe commented 8 months ago

@kfitzpatrick I honestly don't know why this was omitted. Thanks for the catch! I'll get a new version published soon.

eserra commented 8 months ago

I think it's a fairly recent feature

kfitzpatrick commented 8 months ago

Thanks @kyleboe !