Update Meeting through API gives 400 BAD REQUEST
Hi,
I'm trying to update a meeting through API but it doesn't work.
Here my data:
- Endpoint: https://api.zoom.us/v2/meetings/{meetingId}
- Method: PATCH
- Headers:
- Authorization - Bearer [Redacted]
- Content-Type - application/json
- Payload: {"topic": "New Topic"}
The response status is 400:
400 BAD REQUEST
I really can't understand this response.
My creating (POST) and reading (GET) meeting functions work fine, but it seems that with updating (PATCH) something goes wrong.
Can you help me?
PS:
In API docs/update meeting I noticed the following note:
"The recurrence object is required."
But if you look at "recurrence" in the SCHEMA you find
"Recurrence object. Use this object only for a meeting with type 8, a recurring meeting with fixed time."
My meeting is not a recurring one, but scheduled meeting (type 2). Maybe this is the point?
Thanks!
