Description
After sending my request, I get the following response: code 300, “Missing recurrence settings.”. So my question is why would that happen and are there any required settings fields for the recurrence array except for ‘type’ as described in the API. I am trying to create a recurring meeting with fixed time (type 8).
Thank you for posting in the Developer Forum. Are you able to share an example of the request you are sending ? This will help to identify the missing recurrence settings.
Hi @donte.zoom , it is supposed to be creating of a Recurring meeting with fixed time (type 8), according to https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate . I have successfully created a Scheduled meeting (type 2), but unfortunately no such success with the Recurring one. So I can hardly help you reproduce it since it hasn’t worked out for me, yet.
Thanks for the reply.
Maybe it would help if you can post an example of a request for that type (8) of meeting which has been successfully created by you?
Thank you for your reply! Here’s the example post used to create that request:
{
“topic”: “Example Post Type 8”,
“type”: 8, ← This value is of int type
“start_time”: “2021-04-25T12:00:00Z”,
“duration”: 30,
“recurrence”: {
“type”: 2,
“repeat_interval”: 3,
“weekly_days”: “4”,
“end_date_time”: “2021-05-19T12:00:00Z”. <— Include end-date to correctly generate occurrences.
}
}
Please test again with this request and let us know if the problem persist.