API Endpoint(s) and/or Zoom API Event(s)
PATCH /users/{userId}/settings
Description
There seems to be a bug in the user settings patch api for the “allow_live_streaming” property. When we give patch request to enable the “allow_live_stremaing” setting property, the api returns success but the setting is not enabled in zoom account.
Error?
No error
How To Reproduce
Steps to reproduce the behavior:
- Turn off
allow_live_streaming
setting from your zoom account - Call the below curl command to turn on the allow live streaming setting, using valid token and scopes
curl --request PATCH \
--url https://api.zoom.us/v2/users/me/settings \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"in_meeting": {
"allow_live_streaming": true,
}'
- It will return success but if checked the account from zoom, the setting remains unchanged.