Description
Cannot set private_chat locked setting to true via API request or UI.
Error
No error message, the data is just not being updated.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth
Which Endpoint/s?
https://api.zoom.us/v2/groups/:groupId/lock_settings
How To Reproduce (If applicable)
- Create a new Group via UI or API request:
curl --location --request POST 'https://api.zoom.us/v2/groups' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer access_token' \
--header 'Cookie: cred=cred' \
--data-raw '{
"name": "Test Group 1"
}'
- Try to update Group locked settings:
curl --location --request PATCH 'https://api.zoom.us/v2/groups/yn-AhGHVTq2HlQ-s1O3w2A/lock_settings' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer access_token' \
--header 'Cookie: cred=cred' \
--data-raw '
"in_meeting": {
"chat":true,
"private_chat":true
}
}'
- See that
private_chatsetting is stillfalseinstead oftrue.
Additional context
After trying to do the same steps via UI I’ve found that I cannot lock the private_chat setting. It shows as true, but pressing the lock button does nothing.

