How to change a recurring meeting start_time with type:8 using zoom api

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2022-11-18 03:36 PM
Hi, have been using the zoom api endpoint to change the meeting start_time for a script i'm working on, the script changes the start_time for a scheduled meeting but not for a recurring_meeting, if the recurring_meeting is a type:2 then a start_time can not be specified because it does not have that attribute. However, if i specify the start_time for a fixed recurring_meeting, i do not get any error when i make a patch request, however the update to the start_time doesn't seem to be effectuated in the zoom app. This is what my request.patch body looks like
meeting_update_details = {
"topic": topic,
"start_time": start_time.isoformat(),
"duration": MEETING_DURATION,
"timezone": "Asia/Singapore",
}
response = requests.patch(
url + f"/meetings/{MEETING_ID}",
headers=request_header(),
data=json.dumps(meeting_update_details),
)
This is where the document for the api_endpoint is :
Zoom Meeting API
Zoom Meeting API
0 REPLIES 0
