cancel
Showing results for 
Search instead for 
Did you mean: 

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

Ayanelaw
Listener

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



0 REPLIES 0