Logo
Zoom Public API Documentation

Get account settings

GET {{baseUrl}}/accounts/:accountId/settings?option=recording_authentication&custom_query_fields=<string>

Get an account's settings.

To get settings for a master account, use the me value for the accountId path parameter.

Prerequisites: * The account must be a paid account.

Scopes: account:read:admin

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 
option
string Optional query parameters. * `meeting_authentication` - View the [meeting authentication settings](https://support.zoom.us/hc/en-us/articles/360037117472-Authentication-Profiles-for-Meetings-and-Webinars) applied to the user's account. * `recording_authentication` - View the [recording authentication settings](https://support.zoom.us/hc/en-us/articles/360037756671-Authentication-Profiles-for-Cloud-Recordings) applied to the user's account. * `security` - View the account's security settings. For example, passcode requirements for user login or two-factor authentication. * `meeting_security` - View the meeting security settings applied to the user's account.
custom_query_fields
string The name of the field to use to filter the response. For example, if you provide the `host_video` value for this field, you will get a response similar to. `{ schedule_meeting: { host_video: false } }` To use multiple values, comma-separate each value, like `host_video,participant_video`.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "security": { "admin_change_name_pic": "<boolean>", "admin_change_user_info": "<boolean>", "user_modifiable_info_by_admin": [ "sign_in_email" ], "signin_with_sso": { "enable": "<boolean>", "require_sso_for_domains": "<boolean>", "domains": [ "<string>" ], "sso_bypass_users": [ { "id": "<string>", "email": "<string>" } ] }, "hide_billing_info": "<boolean>", "import_photos_from_devices": "<boolean>", "password_requirement": { "consecutive_characters_length": "<integer>", "have_special_character": "<boolean>", "minimum_password_length": "<integer>", "weak_enhance_detection": "<boolean>" }, "sign_again_period_f
Curl
curl -X GET 'https://api.zoom.us/v2/accounts/:accountId/settings?option=recording_authentication&custom_query_fields=<string>?option=recording_authentication&custom_query_fields=<string>' -H 'Accept: application/json'

ENDPOINTS