Chilkat Online Tools

DataFlex / Zoom API / Get locked settings

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vQueryParams
    Handle hoQueryParams
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    Boolean iHost_video
    Boolean iParticipant_video
    Boolean iAudio_type
    Boolean iJoin_before_host
    Boolean iEnforce_login
    Boolean iEnforce_login_with_domains
    String sEnforce_login_domains
    Boolean iNot_store_meeting_topic
    Boolean iRequire_password_for_scheduling_new_meetings
    Boolean iRequire_password_for_instant_meetings
    Boolean iRequire_password_for_pmi_meetings
    Boolean iUse_pmi_for_scheduled_meetings
    Boolean iUse_pmi_for_instant_meetings
    Boolean iMeeting_authentication
    Boolean iEmbed_password_in_join_link
    Boolean iE2e_encryption
    Boolean iChat
    Boolean iPrivate_chat
    Boolean iAuto_saving_chat
    String sEntry_exit_chime
    Boolean iFeedback
    Boolean iPost_meeting_feedback
    Boolean iCo_host
    Boolean iPolling
    Boolean iAttendee_on_hold
    Boolean iShow_meeting_control_toolbar
    Boolean iAllow_show_zoom_windows
    Boolean iAnnotation
    Boolean iWhiteboard
    Boolean iRemote_control
    Boolean iWebinar_question_answer
    Boolean iAnonymous_question_answer
    Boolean iBreakout_room
    Boolean iClosed_caption
    Boolean iFar_end_camera_control
    Boolean iGroup_hd
    Boolean iVirtual_background
    Boolean iAlert_guest_join
    Boolean iAuto_answer
    Boolean iSending_default_email_invites
    Boolean iUse_html_format_email
    Boolean iDscp_marking
    Boolean iStereo_audio
    Boolean iOriginal_audio
    Boolean iScreen_sharing
    Boolean iCustom_data_center_regions
    Boolean iMeeting_reactions
    Boolean iFile_transfer
    Boolean iRequest_permission_to_unmute
    Boolean iAllow_live_streaming
    Boolean iAttention_mode_focus_mode
    Boolean iWebinar_live_streaming
    Boolean iWebinar_chat
    Boolean iSave_caption
    Boolean iSlide_control
    Boolean iMeeting_survey
    Boolean iWebinar_polling
    Boolean iWebinar_survey
    Boolean iCloud_recording_available_reminder
    Boolean iJbh_reminder
    Boolean iCancel_meeting_reminder
    Boolean iAlternative_host_reminder
    Boolean iSchedule_for_reminder
    Boolean iLocal_recording
    Boolean iCloud_recording
    String sAuto_recording
    Boolean iCloud_recording_download
    Boolean iAccount_user_access_recording
    Boolean iHost_delete_cloud_recording
    Boolean iAuto_delete_cmr
    String sRecording_authentication
    Boolean iPrevent_host_access_recording
    Boolean iEnable
    String sIp_addresses_or_ranges
    Boolean iThird_party_audio
    Boolean iTelephony_regions
    Boolean iCall_out
    Boolean iShow_international_numbers_link
    Boolean iBlur_snapshot
    Boolean iToll_free_and_fee_based_toll_call
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
    If (Not(IsComObjectCreated(hoQueryParams))) Begin
        Send CreateComObject of hoQueryParams
    End
    Get ComUpdateString Of hoQueryParams "option" "quis officia in reprehenderit" To iSuccess
    Get ComUpdateString Of hoQueryParams "custom_query_fields" "quis officia in reprehenderit" To iSuccess

    // Adds the "Authorization: Bearer <access_token>" header.
    Set ComAuthToken Of hoHttp To "<access_token>"

    Get pvComObject of hoQueryParams to vQueryParams
    Get ComQuickRequestParams Of hoHttp "GET" "https://api.zoom.us/v2/accounts/:accountId/lock_settings" vQueryParams To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

    // 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

    Get ComBoolOf Of hoJResp "schedule_meeting.host_video" To iHost_video
    Get ComBoolOf Of hoJResp "schedule_meeting.participant_video" To iParticipant_video
    Get ComBoolOf Of hoJResp "schedule_meeting.audio_type" To iAudio_type
    Get ComBoolOf Of hoJResp "schedule_meeting.join_before_host" To iJoin_before_host
    Get ComBoolOf Of hoJResp "schedule_meeting.enforce_login" To iEnforce_login
    Get ComBoolOf Of hoJResp "schedule_meeting.enforce_login_with_domains" To iEnforce_login_with_domains
    Get ComStringOf Of hoJResp "schedule_meeting.enforce_login_domains" To sEnforce_login_domains
    Get ComBoolOf Of hoJResp "schedule_meeting.not_store_meeting_topic" To iNot_store_meeting_topic
    Get ComBoolOf Of hoJResp "schedule_meeting.require_password_for_scheduling_new_meetings" To iRequire_password_for_scheduling_new_meetings
    Get ComBoolOf Of hoJResp "schedule_meeting.require_password_for_instant_meetings" To iRequire_password_for_instant_meetings
    Get ComBoolOf Of hoJResp "schedule_meeting.require_password_for_pmi_meetings" To iRequire_password_for_pmi_meetings
    Get ComBoolOf Of hoJResp "schedule_meeting.use_pmi_for_scheduled_meetings" To iUse_pmi_for_scheduled_meetings
    Get ComBoolOf Of hoJResp "schedule_meeting.use_pmi_for_instant_meetings" To iUse_pmi_for_instant_meetings
    Get ComBoolOf Of hoJResp "schedule_meeting.meeting_authentication" To iMeeting_authentication
    Get ComBoolOf Of hoJResp "schedule_meeting.embed_password_in_join_link" To iEmbed_password_in_join_link
    Get ComBoolOf Of hoJResp "in_meeting.e2e_encryption" To iE2e_encryption
    Get ComBoolOf Of hoJResp "in_meeting.chat" To iChat
    Get ComBoolOf Of hoJResp "in_meeting.private_chat" To iPrivate_chat
    Get ComBoolOf Of hoJResp "in_meeting.auto_saving_chat" To iAuto_saving_chat
    Get ComStringOf Of hoJResp "in_meeting.entry_exit_chime" To sEntry_exit_chime
    Get ComBoolOf Of hoJResp "in_meeting.feedback" To iFeedback
    Get ComBoolOf Of hoJResp "in_meeting.post_meeting_feedback" To iPost_meeting_feedback
    Get ComBoolOf Of hoJResp "in_meeting.co_host" To iCo_host
    Get ComBoolOf Of hoJResp "in_meeting.polling" To iPolling
    Get ComBoolOf Of hoJResp "in_meeting.attendee_on_hold" To iAttendee_on_hold
    Get ComBoolOf Of hoJResp "in_meeting.show_meeting_control_toolbar" To iShow_meeting_control_toolbar
    Get ComBoolOf Of hoJResp "in_meeting.allow_show_zoom_windows" To iAllow_show_zoom_windows
    Get ComBoolOf Of hoJResp "in_meeting.annotation" To iAnnotation
    Get ComBoolOf Of hoJResp "in_meeting.whiteboard" To iWhiteboard
    Get ComBoolOf Of hoJResp "in_meeting.remote_control" To iRemote_control
    Get ComBoolOf Of hoJResp "in_meeting.webinar_question_answer" To iWebinar_question_answer
    Get ComBoolOf Of hoJResp "in_meeting.anonymous_question_answer" To iAnonymous_question_answer
    Get ComBoolOf Of hoJResp "in_meeting.breakout_room" To iBreakout_room
    Get ComBoolOf Of hoJResp "in_meeting.closed_caption" To iClosed_caption
    Get ComBoolOf Of hoJResp "in_meeting.far_end_camera_control" To iFar_end_camera_control
    Get ComBoolOf Of hoJResp "in_meeting.group_hd" To iGroup_hd
    Get ComBoolOf Of hoJResp "in_meeting.virtual_background" To iVirtual_background
    Get ComBoolOf Of hoJResp "in_meeting.alert_guest_join" To iAlert_guest_join
    Get ComBoolOf Of hoJResp "in_meeting.auto_answer" To iAuto_answer
    Get ComBoolOf Of hoJResp "in_meeting.sending_default_email_invites" To iSending_default_email_invites
    Get ComBoolOf Of hoJResp "in_meeting.use_html_format_email" To iUse_html_format_email
    Get ComBoolOf Of hoJResp "in_meeting.dscp_marking" To iDscp_marking
    Get ComBoolOf Of hoJResp "in_meeting.stereo_audio" To iStereo_audio
    Get ComBoolOf Of hoJResp "in_meeting.original_audio" To iOriginal_audio
    Get ComBoolOf Of hoJResp "in_meeting.screen_sharing" To iScreen_sharing
    Get ComBoolOf Of hoJResp "in_meeting.custom_data_center_regions" To iCustom_data_center_regions
    Get ComBoolOf Of hoJResp "in_meeting.meeting_reactions" To iMeeting_reactions
    Get ComBoolOf Of hoJResp "in_meeting.file_transfer" To iFile_transfer
    Get ComBoolOf Of hoJResp "in_meeting.request_permission_to_unmute" To iRequest_permission_to_unmute
    Get ComBoolOf Of hoJResp "in_meeting.allow_live_streaming" To iAllow_live_streaming
    Get ComBoolOf Of hoJResp "in_meeting.attention_mode_focus_mode" To iAttention_mode_focus_mode
    Get ComBoolOf Of hoJResp "in_meeting.webinar_live_streaming" To iWebinar_live_streaming
    Get ComBoolOf Of hoJResp "in_meeting.webinar_chat" To iWebinar_chat
    Get ComBoolOf Of hoJResp "in_meeting.save_caption" To iSave_caption
    Get ComBoolOf Of hoJResp "in_meeting.slide_control" To iSlide_control
    Get ComBoolOf Of hoJResp "in_meeting.meeting_survey" To iMeeting_survey
    Get ComBoolOf Of hoJResp "in_meeting.webinar_polling" To iWebinar_polling
    Get ComBoolOf Of hoJResp "in_meeting.webinar_survey" To iWebinar_survey
    Get ComBoolOf Of hoJResp "email_notification.cloud_recording_available_reminder" To iCloud_recording_available_reminder
    Get ComBoolOf Of hoJResp "email_notification.jbh_reminder" To iJbh_reminder
    Get ComBoolOf Of hoJResp "email_notification.cancel_meeting_reminder" To iCancel_meeting_reminder
    Get ComBoolOf Of hoJResp "email_notification.alternative_host_reminder" To iAlternative_host_reminder
    Get ComBoolOf Of hoJResp "email_notification.schedule_for_reminder" To iSchedule_for_reminder
    Get ComBoolOf Of hoJResp "recording.local_recording" To iLocal_recording
    Get ComBoolOf Of hoJResp "recording.cloud_recording" To iCloud_recording
    Get ComStringOf Of hoJResp "recording.auto_recording" To sAuto_recording
    Get ComBoolOf Of hoJResp "recording.cloud_recording_download" To iCloud_recording_download
    Get ComBoolOf Of hoJResp "recording.account_user_access_recording" To iAccount_user_access_recording
    Get ComBoolOf Of hoJResp "recording.host_delete_cloud_recording" To iHost_delete_cloud_recording
    Get ComBoolOf Of hoJResp "recording.auto_delete_cmr" To iAuto_delete_cmr
    Get ComStringOf Of hoJResp "recording.recording_authentication" To sRecording_authentication
    Get ComBoolOf Of hoJResp "recording.prevent_host_access_recording" To iPrevent_host_access_recording
    Get ComBoolOf Of hoJResp "recording.ip_address_access_control.enable" To iEnable
    Get ComStringOf Of hoJResp "recording.ip_address_access_control.ip_addresses_or_ranges" To sIp_addresses_or_ranges
    Get ComBoolOf Of hoJResp "telephony.third_party_audio" To iThird_party_audio
    Get ComBoolOf Of hoJResp "telephony.telephony_regions" To iTelephony_regions
    Get ComBoolOf Of hoJResp "tsp.call_out" To iCall_out
    Get ComBoolOf Of hoJResp "tsp.show_international_numbers_link" To iShow_international_numbers_link
    Get ComBoolOf Of hoJResp "other_options.blur_snapshot" To iBlur_snapshot
    Get ComBoolOf Of hoJResp "audio_conferencing.toll_free_and_fee_based_toll_call" To iToll_free_and_fee_based_toll_call


End_Procedure

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": ""
    }
  ]
}