API endpoint request: create individual occurrence for a meeting

Is your feature request related to a problem? Please describe.
The Zoom UI allows you to add instances individually to a reccurence:
image

You cannot currently do this via the API. You must edit the entire Recurrence object with a PATCH call and extend the date, rather than add an occurrence with a specific start_time and duration.

The occurrence array is viewable via the Get Meetings API.

Describe the solution you’d like
POST /meetings/{id}/occurrence (or instance)
body:

{
"start_time": "UTC",
"duration": "min"
}

Describe alternatives you’ve considered
Create a new recurring meeting (meeting ID changes) or adjusting the recurrence object (very buggy, see this post).

3 Likes

I have the exact same problem has anyone managed to find a solution?

Thanks

Is there any solution for this?