API Endpoint(s) and/or Zoom API Event(s) -

Meeting Update via PATCH suddenly returning 400 errors (worked yesterday).
We utilize the ZoomMeeting.Builder() in C# .Net.
I am posint the Endpoint with commas instead of slashes as there is an error about adding a url in here.

Endpoint: api.zoom.us, v2, meetings, 82630324733
PATCH
Response: Response status code does not indicate success: 400 (Bad Request).

Description
We populate the meeting via the ZoomMeeting.Builder() as C#.
Please let me know if you need all the individual values. I would prefer not to post them in a public forum.

var meeting = new ZoomMeeting.Builder()
.Topic(zoomClass.ClassName)
.StartTime(zoomClass.ClassStartTime)
.Duration((zoomClass.ClassEndTime - zoomClass.ClassStartTime).TotalMinutes)
.ScheduleFor(zoomClass.ZoomTrainerID)
.Agenda(zoomClass.ClassDescription)
.ScheduleID(zoomClass.ScheduleID)
.Settings(new ZoomMeetingSettings())
.GeneratePassword(false)
.Build();

Error?
Response status code does not indicate success: 400 (Bad Request)

How To Reproduce
Steps to reproduce the behavior:
1. api.zoom.us, v2, meetings, 82630324733
2. Quite a while ago we upgraded to oAuth as recommended and we could no longer use JWT with your Zoom API.
3. Response status code does not indicate success: 400 (Bad Request)

Please let me know what else you may need to assist us in troubleshooting this.

Hi @zoomapi1 , I am not able to reproduce in node or with Postman. Can you reproduce this in Postman?

We were able to remedy this issue.
We had a trainer leave that we disabled/turned off and the app could not reconcile it. It threw a “no meeting host” which was pretty criptic.

Thanks Gianni

Hi @zoomapi1 , thanks for clarifying and sharing the resolution!

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