cancel
Showing results for 
Search instead for 
Did you mean: 

Request permission to unmute participants - LTI setting

joshi
Listener

This question is asked previously, but I would like to check what is the status of it. 

https://devforum.zoom.us/t/request-permission-to-unmute-participants/29228

 

We are an online school and have LTI integrated our LMS with Zoom. How can we enable the pre-approved consent every time a meeting is started? Please note each meeting ID is different and it is not a reoccurring meeting.

 

https://support.zoom.us/hc/en-us/articles/203435537-Muting-and-unmuting-participants-in-a-meeting

 

 

 

 

3 REPLIES 3

Sof
Attendee | Zoom Employee
Attendee | Zoom Employee

Hi @joshi, thank you for submitting your question in the Zoom Community.

 

We checked the post in the development forum, and it looks like that this feature request was developed and included in the November 2020 web release.

You can check the release notes at https://support.zoom.us/hc/en-us/articles/204758419-Release-notes-for-Web

It should be in the November 22 one, listed as Added new fields(“request_permission_to_unmute_participants”) in the Account Settings, Group Settings, User Settings and Lock Settings APIs.

 

Always happy to help! If this solved your question, please click "Accept as Solution".

joshi
Listener

Hi @Sof 

 

Thanks for this. We are using APIs to create meetings. How can it be achieved in it? 

 

I didn't find something similar in the zoom API:

 

Sof
Attendee | Zoom Employee
Attendee | Zoom Employee

Hi @joshi

Thank you for your question.

 

This option is part of the account, group or user settings, and you can decide to lock it at account level. This means that you don't enable/disable it for a specific meeting, but the host that creates the meeting has it enabled or not depending on the settings.

 

Below the different levels at which it can be enabled:

- Get account settings: GET /v2/accounts/{accountId}/settings

- Update account settings: PATCH /v2/accounts/{accountId}/settings

- Get group settings: GET /v2/groups/{groupId}/settings

- Update group settings: PATCH /v2/groups/{groupId}/settings

- Get user settings: GET /v2/users/{userId}/settings

- Update user settings: PATCH /v2/users/{userId}/settings

 

To lock the feature at account or group level:

  • PATCH /v2/accounts/{accountId}/lock_settings
  • PATCH /v2/groups/{groupId}/lock_settings

See also:

https://marketplace.zoom.us/docs/api-reference/master-account-apis/account-apis

 

Let me know if this helps. If this solved your question, please click "Accept as Solution".