Unable to change email address in zoom room

Howdy all! We are looking to mass change a lot of zoom room email addresses for the calendar integration in the near future. Using python I can get most of what I need but when I put to change the address I get 405. I’m curious if what I’m tryin to do is supported? I can’t find any documentation on it.

My PUT to change the address on the account:

req = {
‘calendar_resource_email’: ‘john.doe@domain.com’,
}

resp = requests.put(
f"https://api.zoom.us/v2/rooms/calendar/services//resources/{json_data[‘basic’][‘calendar_resource_id’]}",
headers=headers,
json = req,
)

If there’s a link to an API doc I’m missing I can certainly follow it but I have not been able to find an API to change this for the Zoom Room.

Hi @jasun.fletcher
I hope you are doing great!
Were you able to resolve this issue? If not, could you please confirm you are calling this endpoint:

If so, I do not see the field “calendar_resource_email” available to update.

Have you tried with this one:

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.