cancel
Showing results for 
Search instead for 
Did you mean: 
Important updates from Zoom Support:
  • Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.

  • Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!

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

Ayanelaw
Newcomer
Newcomer

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