Description
Cannot update meeting settings using the PATCH /meetings/{meetingId} API endpoint
Error
I have made the request from my app and also from the “Send a Test Request” section of this page: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingupdate and I receive a 204 status code both times. The “topic” will update fine, as well as the “host_video” setting, but the “approval_type” and “waiting_room” settings will not update.
Which App Type
OAuth
Which Endpoint/s?
PATCH /meetings/{meetingId}
How To Reproduce
Steps to reproduce the behavior:
- Using an OAuth access token, the Id of a previously created meeting, and the following json body, make an HTTP request to the PATCH /meetings/{meetingId} endpoint (I was able to reproduce this error using the “Send a Test Request” page at https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingupdate):
{
“topic”: “My Test”,
“type”: 2,
“start_time”: “2021-03-15T08:00:00Z”,
“duration”: 60,
“timezone”: “America/Los_Angeles”,
“settings”: {
“approval_type”: 0,
“waiting_room”: false,
“host_video”: true
}
} - Confirm you receive the expected “204” HTTP status code.
- Confirm that “topic” will update fine, as well as the “host_video” setting, but the “approval_type” and “waiting_room” settings will not update.
Additional context
Date of Occurrence: March 12, 4:35pm PST
Meeting ID: 97653073667
Account No: 51381620
Any and all help is appreciated. Thank you.