I use zoom api to schedule meeting by using PATCH method of the endpoint /rooms/{id}/events.
there is the post data
{
“method”: “zoomroom.meeting_schedule”,
“params”: {
“passcode”: “12345678”,
“meeting_topic”: “Test12”,
“start_time”: “2023-09-25T14:00:00Z”,
“duration”: 90,
“timezone”: “Asia/Bangkok”
}
}
The response’s status is 202 with no body response and I have check zoom room controller. The meeting was created but it disappear in sudden. How to fix it?
zoom room version 5.15.7