Chilkat Online Tools

VB6 / Zoom API / Get locked settings

Back to Collection Items

' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New ChilkatHttp
Dim success As Long

Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("option","quis officia in reprehenderit")
success = queryParams.UpdateString("custom_query_fields","quis officia in reprehenderit")

' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"

Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","https://api.zoom.us/v2/accounts/:accountId/lock_settings",queryParams)
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)

Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print resp.Header
    Debug.Print "Failed."

    Exit Sub
End If

' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)

' {
'   "schedule_meeting": {
'     "host_video": true,
'     "participant_video": true,
'     "audio_type": true,
'     "join_before_host": false,
'     "enforce_login": false,
'     "enforce_login_with_domains": false,
'     "enforce_login_domains": "ut Excepteur aute",
'     "not_store_meeting_topic": false,
'     "require_password_for_scheduling_new_meetings": true,
'     "require_password_for_instant_meetings": false,
'     "require_password_for_pmi_meetings": false,
'     "use_pmi_for_scheduled_meetings": true,
'     "use_pmi_for_instant_meetings": false,
'     "meeting_authentication": false,
'     "embed_password_in_join_link": false
'   },
'   "in_meeting": {
'     "e2e_encryption": true,
'     "chat": true,
'     "private_chat": false,
'     "auto_saving_chat": false,
'     "entry_exit_chime": "in ut",
'     "feedback": true,
'     "post_meeting_feedback": true,
'     "co_host": true,
'     "polling": true,
'     "attendee_on_hold": false,
'     "show_meeting_control_toolbar": true,
'     "allow_show_zoom_windows": false,
'     "annotation": true,
'     "whiteboard": false,
'     "remote_control": false,
'     "webinar_question_answer": true,
'     "anonymous_question_answer": true,
'     "breakout_room": false,
'     "closed_caption": false,
'     "far_end_camera_control": false,
'     "group_hd": true,
'     "virtual_background": false,
'     "alert_guest_join": true,
'     "auto_answer": true,
'     "sending_default_email_invites": true,
'     "use_html_format_email": false,
'     "dscp_marking": true,
'     "stereo_audio": false,
'     "original_audio": false,
'     "screen_sharing": true,
'     "custom_data_center_regions": true,
'     "meeting_reactions": false,
'     "file_transfer": false,
'     "request_permission_to_unmute": false,
'     "allow_live_streaming": true,
'     "attention_mode_focus_mode": false,
'     "webinar_live_streaming": false,
'     "webinar_chat": true,
'     "save_caption": false,
'     "slide_control": true,
'     "meeting_survey": false,
'     "webinar_polling": true,
'     "webinar_survey": false
'   },
'   "email_notification": {
'     "cloud_recording_available_reminder": true,
'     "jbh_reminder": false,
'     "cancel_meeting_reminder": false,
'     "alternative_host_reminder": true,
'     "schedule_for_reminder": true
'   },
'   "recording": {
'     "local_recording": false,
'     "cloud_recording": false,
'     "auto_recording": "est moll",
'     "cloud_recording_download": false,
'     "account_user_access_recording": false,
'     "host_delete_cloud_recording": true,
'     "auto_delete_cmr": true,
'     "recording_authentication": "ut ipsum labore pari",
'     "prevent_host_access_recording": true,
'     "ip_address_access_control": {
'       "enable": true,
'       "ip_addresses_or_ranges": "ea"
'     }
'   },
'   "telephony": {
'     "third_party_audio": true,
'     "telephony_regions": true
'   },
'   "tsp": {
'     "call_out": false,
'     "show_international_numbers_link": true
'   },
'   "other_options": {
'     "blur_snapshot": true
'   },
'   "audio_conferencing": {
'     "toll_free_and_fee_based_toll_call": false
'   }
' }

' Sample code for parsing the JSON response...
' Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

Dim Host_video As Long
Host_video = jResp.BoolOf("schedule_meeting.host_video")
Dim Participant_video As Long
Participant_video = jResp.BoolOf("schedule_meeting.participant_video")
Dim Audio_type As Long
Audio_type = jResp.BoolOf("schedule_meeting.audio_type")
Dim Join_before_host As Long
Join_before_host = jResp.BoolOf("schedule_meeting.join_before_host")
Dim Enforce_login As Long
Enforce_login = jResp.BoolOf("schedule_meeting.enforce_login")
Dim Enforce_login_with_domains As Long
Enforce_login_with_domains = jResp.BoolOf("schedule_meeting.enforce_login_with_domains")
Dim Enforce_login_domains As String
Enforce_login_domains = jResp.StringOf("schedule_meeting.enforce_login_domains")
Dim Not_store_meeting_topic As Long
Not_store_meeting_topic = jResp.BoolOf("schedule_meeting.not_store_meeting_topic")
Dim Require_password_for_scheduling_new_meetings As Long
Require_password_for_scheduling_new_meetings = jResp.BoolOf("schedule_meeting.require_password_for_scheduling_new_meetings")
Dim Require_password_for_instant_meetings As Long
Require_password_for_instant_meetings = jResp.BoolOf("schedule_meeting.require_password_for_instant_meetings")
Dim Require_password_for_pmi_meetings As Long
Require_password_for_pmi_meetings = jResp.BoolOf("schedule_meeting.require_password_for_pmi_meetings")
Dim Use_pmi_for_scheduled_meetings As Long
Use_pmi_for_scheduled_meetings = jResp.BoolOf("schedule_meeting.use_pmi_for_scheduled_meetings")
Dim Use_pmi_for_instant_meetings As Long
Use_pmi_for_instant_meetings = jResp.BoolOf("schedule_meeting.use_pmi_for_instant_meetings")
Dim Meeting_authentication As Long
Meeting_authentication = jResp.BoolOf("schedule_meeting.meeting_authentication")
Dim Embed_password_in_join_link As Long
Embed_password_in_join_link = jResp.BoolOf("schedule_meeting.embed_password_in_join_link")
Dim E2e_encryption As Long
E2e_encryption = jResp.BoolOf("in_meeting.e2e_encryption")
Dim Chat As Long
Chat = jResp.BoolOf("in_meeting.chat")
Dim Private_chat As Long
Private_chat = jResp.BoolOf("in_meeting.private_chat")
Dim Auto_saving_chat As Long
Auto_saving_chat = jResp.BoolOf("in_meeting.auto_saving_chat")
Dim Entry_exit_chime As String
Entry_exit_chime = jResp.StringOf("in_meeting.entry_exit_chime")
Dim Feedback As Long
Feedback = jResp.BoolOf("in_meeting.feedback")
Dim Post_meeting_feedback As Long
Post_meeting_feedback = jResp.BoolOf("in_meeting.post_meeting_feedback")
Dim Co_host As Long
Co_host = jResp.BoolOf("in_meeting.co_host")
Dim Polling As Long
Polling = jResp.BoolOf("in_meeting.polling")
Dim Attendee_on_hold As Long
Attendee_on_hold = jResp.BoolOf("in_meeting.attendee_on_hold")
Dim Show_meeting_control_toolbar As Long
Show_meeting_control_toolbar = jResp.BoolOf("in_meeting.show_meeting_control_toolbar")
Dim Allow_show_zoom_windows As Long
Allow_show_zoom_windows = jResp.BoolOf("in_meeting.allow_show_zoom_windows")
Dim Annotation As Long
Annotation = jResp.BoolOf("in_meeting.annotation")
Dim Whiteboard As Long
Whiteboard = jResp.BoolOf("in_meeting.whiteboard")
Dim Remote_control As Long
Remote_control = jResp.BoolOf("in_meeting.remote_control")
Dim Webinar_question_answer As Long
Webinar_question_answer = jResp.BoolOf("in_meeting.webinar_question_answer")
Dim Anonymous_question_answer As Long
Anonymous_question_answer = jResp.BoolOf("in_meeting.anonymous_question_answer")
Dim Breakout_room As Long
Breakout_room = jResp.BoolOf("in_meeting.breakout_room")
Dim Closed_caption As Long
Closed_caption = jResp.BoolOf("in_meeting.closed_caption")
Dim Far_end_camera_control As Long
Far_end_camera_control = jResp.BoolOf("in_meeting.far_end_camera_control")
Dim Group_hd As Long
Group_hd = jResp.BoolOf("in_meeting.group_hd")
Dim Virtual_background As Long
Virtual_background = jResp.BoolOf("in_meeting.virtual_background")
Dim Alert_guest_join As Long
Alert_guest_join = jResp.BoolOf("in_meeting.alert_guest_join")
Dim Auto_answer As Long
Auto_answer = jResp.BoolOf("in_meeting.auto_answer")
Dim Sending_default_email_invites As Long
Sending_default_email_invites = jResp.BoolOf("in_meeting.sending_default_email_invites")
Dim Use_html_format_email As Long
Use_html_format_email = jResp.BoolOf("in_meeting.use_html_format_email")
Dim Dscp_marking As Long
Dscp_marking = jResp.BoolOf("in_meeting.dscp_marking")
Dim Stereo_audio As Long
Stereo_audio = jResp.BoolOf("in_meeting.stereo_audio")
Dim Original_audio As Long
Original_audio = jResp.BoolOf("in_meeting.original_audio")
Dim Screen_sharing As Long
Screen_sharing = jResp.BoolOf("in_meeting.screen_sharing")
Dim Custom_data_center_regions As Long
Custom_data_center_regions = jResp.BoolOf("in_meeting.custom_data_center_regions")
Dim Meeting_reactions As Long
Meeting_reactions = jResp.BoolOf("in_meeting.meeting_reactions")
Dim File_transfer As Long
File_transfer = jResp.BoolOf("in_meeting.file_transfer")
Dim Request_permission_to_unmute As Long
Request_permission_to_unmute = jResp.BoolOf("in_meeting.request_permission_to_unmute")
Dim Allow_live_streaming As Long
Allow_live_streaming = jResp.BoolOf("in_meeting.allow_live_streaming")
Dim Attention_mode_focus_mode As Long
Attention_mode_focus_mode = jResp.BoolOf("in_meeting.attention_mode_focus_mode")
Dim Webinar_live_streaming As Long
Webinar_live_streaming = jResp.BoolOf("in_meeting.webinar_live_streaming")
Dim Webinar_chat As Long
Webinar_chat = jResp.BoolOf("in_meeting.webinar_chat")
Dim Save_caption As Long
Save_caption = jResp.BoolOf("in_meeting.save_caption")
Dim Slide_control As Long
Slide_control = jResp.BoolOf("in_meeting.slide_control")
Dim Meeting_survey As Long
Meeting_survey = jResp.BoolOf("in_meeting.meeting_survey")
Dim Webinar_polling As Long
Webinar_polling = jResp.BoolOf("in_meeting.webinar_polling")
Dim Webinar_survey As Long
Webinar_survey = jResp.BoolOf("in_meeting.webinar_survey")
Dim Cloud_recording_available_reminder As Long
Cloud_recording_available_reminder = jResp.BoolOf("email_notification.cloud_recording_available_reminder")
Dim Jbh_reminder As Long
Jbh_reminder = jResp.BoolOf("email_notification.jbh_reminder")
Dim Cancel_meeting_reminder As Long
Cancel_meeting_reminder = jResp.BoolOf("email_notification.cancel_meeting_reminder")
Dim Alternative_host_reminder As Long
Alternative_host_reminder = jResp.BoolOf("email_notification.alternative_host_reminder")
Dim Schedule_for_reminder As Long
Schedule_for_reminder = jResp.BoolOf("email_notification.schedule_for_reminder")
Dim Local_recording As Long
Local_recording = jResp.BoolOf("recording.local_recording")
Dim Cloud_recording As Long
Cloud_recording = jResp.BoolOf("recording.cloud_recording")
Dim Auto_recording As String
Auto_recording = jResp.StringOf("recording.auto_recording")
Dim Cloud_recording_download As Long
Cloud_recording_download = jResp.BoolOf("recording.cloud_recording_download")
Dim Account_user_access_recording As Long
Account_user_access_recording = jResp.BoolOf("recording.account_user_access_recording")
Dim Host_delete_cloud_recording As Long
Host_delete_cloud_recording = jResp.BoolOf("recording.host_delete_cloud_recording")
Dim Auto_delete_cmr As Long
Auto_delete_cmr = jResp.BoolOf("recording.auto_delete_cmr")
Dim Recording_authentication As String
Recording_authentication = jResp.StringOf("recording.recording_authentication")
Dim Prevent_host_access_recording As Long
Prevent_host_access_recording = jResp.BoolOf("recording.prevent_host_access_recording")
Dim Enable As Long
Enable = jResp.BoolOf("recording.ip_address_access_control.enable")
Dim Ip_addresses_or_ranges As String
Ip_addresses_or_ranges = jResp.StringOf("recording.ip_address_access_control.ip_addresses_or_ranges")
Dim Third_party_audio As Long
Third_party_audio = jResp.BoolOf("telephony.third_party_audio")
Dim Telephony_regions As Long
Telephony_regions = jResp.BoolOf("telephony.telephony_regions")
Dim Call_out As Long
Call_out = jResp.BoolOf("tsp.call_out")
Dim Show_international_numbers_link As Long
Show_international_numbers_link = jResp.BoolOf("tsp.show_international_numbers_link")
Dim Blur_snapshot As Long
Blur_snapshot = jResp.BoolOf("other_options.blur_snapshot")
Dim Toll_free_and_fee_based_toll_call As Long
Toll_free_and_fee_based_toll_call = jResp.BoolOf("audio_conferencing.toll_free_and_fee_based_toll_call")

Curl Command

curl -G -d "option=quis%20officia%20in%20reprehenderit"
	-d "custom_query_fields=quis%20officia%20in%20reprehenderit"
	-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/accounts/:accountId/lock_settings

Postman Collection Item JSON

{
  "name": "Get locked settings",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/accounts/:accountId/lock_settings?option=quis officia in reprehenderit&custom_query_fields=quis officia in reprehenderit",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "accounts",
        ":accountId",
        "lock_settings"
      ],
      "query": [
        {
          "key": "option",
          "value": "quis officia in reprehenderit",
          "description": "Optional query parameters: \n* `meeting_security` — Use this query parameter to view the meeting security settings applied to the user's account."
        },
        {
          "key": "custom_query_fields",
          "value": "quis officia in reprehenderit",
          "description": "Provide the name of the field by which you would like to filter the response. For example, if you provide \"host_video\" as the value of this field, you will get a response similar to the following:<br>\n{\n    \"schedule_meeting\": {\n        \"host_video\": false\n    }\n}\n<br>You can provide multiple values by separating them with commas(example: \"host_video,participant_video”)."
        }
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "quis officia in reprehenderit",
          "description": "(Required) Unique Identifier of the account. To retrieve locked settings of the master account or a regular account, provide \"me\" as the value of this field. <br> To retrieve locked settings of a sub account, provide the Account ID of the sub account in this field."
        }
      ]
    },
    "description": "[Account Locked Settings](https://support.zoom.us/hc/en-us/articles/115005269866) allow you turn settings on or off for all users in your account. No user except the account admin or account owner can change these settings. With lock settings, you force the settings on for all users.\nUse this API to retrieve an account's locked settings. \n\n**Note:** This API can be used by Zoom Accounts that are on a Pro or a higher plan as well accounts that have master and sub accounts options enabled. <br><br>\n**Prerequisites:**\n* Pro or a higher paid account. <br>\n\n**Scope**: `account:read:admin`.\n<br> **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`<br>\n\n\n\n\n\n**Scope:** account:read:admin"
  },
  "response": [
    {
      "name": "**Error Code:** `200`<br>\nOnly available for paid account:$accountId.\n\n**HTTP Status Code:** `200`<br>\nLocked settings for the Account returned.\n\n",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/lock_settings?option=quis officia in reprehenderit&custom_query_fields=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "lock_settings"
          ],
          "query": [
            {
              "key": "option",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "custom_query_fields",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) Unique Identifier of the account. To retrieve locked settings of the master account or a regular account, provide \"me\" as the value of this field. <br> To retrieve locked settings of a sub account, provide the Account ID of the sub account in this field."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"schedule_meeting\": {\n  \"host_video\": true,\n  \"participant_video\": true,\n  \"audio_type\": true,\n  \"join_before_host\": false,\n  \"enforce_login\": false,\n  \"enforce_login_with_domains\": false,\n  \"enforce_login_domains\": \"ut Excepteur aute\",\n  \"not_store_meeting_topic\": false,\n  \"require_password_for_scheduling_new_meetings\": true,\n  \"require_password_for_instant_meetings\": false,\n  \"require_password_for_pmi_meetings\": false,\n  \"use_pmi_for_scheduled_meetings\": true,\n  \"use_pmi_for_instant_meetings\": false,\n  \"meeting_authentication\": false,\n  \"embed_password_in_join_link\": false\n },\n \"in_meeting\": {\n  \"e2e_encryption\": true,\n  \"chat\": true,\n  \"private_chat\": false,\n  \"auto_saving_chat\": false,\n  \"entry_exit_chime\": \"in ut\",\n  \"feedback\": true,\n  \"post_meeting_feedback\": true,\n  \"co_host\": true,\n  \"polling\": true,\n  \"attendee_on_hold\": false,\n  \"show_meeting_control_toolbar\": true,\n  \"allow_show_zoom_windows\": false,\n  \"annotation\": true,\n  \"whiteboard\": false,\n  \"remote_control\": false,\n  \"webinar_question_answer\": true,\n  \"anonymous_question_answer\": true,\n  \"breakout_room\": false,\n  \"closed_caption\": false,\n  \"far_end_camera_control\": false,\n  \"group_hd\": true,\n  \"virtual_background\": false,\n  \"alert_guest_join\": true,\n  \"auto_answer\": true,\n  \"sending_default_email_invites\": true,\n  \"use_html_format_email\": false,\n  \"dscp_marking\": true,\n  \"stereo_audio\": false,\n  \"original_audio\": false,\n  \"screen_sharing\": true,\n  \"custom_data_center_regions\": true,\n  \"meeting_reactions\": false,\n  \"file_transfer\": false,\n  \"request_permission_to_unmute\": false,\n  \"allow_live_streaming\": true,\n  \"attention_mode_focus_mode\": false,\n  \"webinar_live_streaming\": false,\n  \"webinar_chat\": true,\n  \"save_caption\": false,\n  \"slide_control\": true,\n  \"meeting_survey\": false,\n  \"webinar_polling\": true,\n  \"webinar_survey\": false\n },\n \"email_notification\": {\n  \"cloud_recording_available_reminder\": true,\n  \"jbh_reminder\": false,\n  \"cancel_meeting_reminder\": false,\n  \"alternative_host_reminder\": true,\n  \"schedule_for_reminder\": true\n },\n \"recording\": {\n  \"local_recording\": false,\n  \"cloud_recording\": false,\n  \"auto_recording\": \"est moll\",\n  \"cloud_recording_download\": false,\n  \"account_user_access_recording\": false,\n  \"host_delete_cloud_recording\": true,\n  \"auto_delete_cmr\": true,\n  \"recording_authentication\": \"ut ipsum labore pari\",\n  \"prevent_host_access_recording\": true,\n  \"ip_address_access_control\": {\n   \"enable\": true,\n   \"ip_addresses_or_ranges\": \"ea\"\n  }\n },\n \"telephony\": {\n  \"third_party_audio\": true,\n  \"telephony_regions\": true\n },\n \"tsp\": {\n  \"call_out\": false,\n  \"show_international_numbers_link\": true\n },\n \"other_options\": {\n  \"blur_snapshot\": true\n },\n \"audio_conferencing\": {\n  \"toll_free_and_fee_based_toll_call\": false\n }\n}"
    },
    {
      "name": "**HTTP Status Code:** `400`<br>\n**Error Code:** `2001`<br>\nAccount does not exist: $subAccountId.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/lock_settings?option=quis officia in reprehenderit&custom_query_fields=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "lock_settings"
          ],
          "query": [
            {
              "key": "option",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "custom_query_fields",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) Unique Identifier of the account. To retrieve locked settings of the master account or a regular account, provide \"me\" as the value of this field. <br> To retrieve locked settings of a sub account, provide the Account ID of the sub account in this field."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}