Is your feature request related to a problem? Please describe.
The Zoom UI allows you to add instances individually to a reccurence:
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).