Description
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:3 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,headers=request_header(),
data=json.dumps(meeting_update_details),
)
Error?
I am not able to get the zoom recurring meeting start_time change to be effectuated in the app but it doesn’t give any errors when i make the patch request.
How To Reproduce
Steps to reproduce the behavior:
1. Request URL / Headers (without credentials or sensitive info like emails, uuid, etc.) / Body
2. Authentication method or app type
3. Any errors
url = “https://api.zoom.us/v2/meetings/{MEETING_ID}”
headers = {
“authorization”: "Bearer " + generate_token(),
“content-type”: “application/json”,
}
authentication_method = jwt