Chilkat Online Tools

Foxpro / Zoom API / Get a group's settings

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loQueryParams
LOCAL loResp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcStrVal
LOCAL lcCode
LOCAL lcCountry_code
LOCAL lcCountry_name
LOCAL lcV_number
LOCAL lcDisplay_number
LOCAL lnHost_video
LOCAL lnParticipant_video
LOCAL lcAudio_type
LOCAL lnJoin_before_host
LOCAL lnForce_pmi_jbh_password
LOCAL lnRequire_password_for_scheduling_new_meetings
LOCAL lnRequire_password_for_scheduled_meetings
LOCAL lnRequire_password_for_instant_meetings
LOCAL lcRequire_password_for_pmi_meetings
LOCAL lnPstn_password_protected
LOCAL lnMute_upon_entry
LOCAL lnUpcoming_meeting_reminder
LOCAL lnE2e_encryption
LOCAL lnChat
LOCAL lnAllow_participants_chat_with
LOCAL lnAllow_users_save_chats
LOCAL lnPrivate_chat
LOCAL lnAuto_saving_chat
LOCAL lcEntry_exit_chime
LOCAL lnRecord_play_own_voice
LOCAL lnFeedback
LOCAL lnPost_meeting_feedback
LOCAL lnCo_host
LOCAL lnPolling
LOCAL lnAttendee_on_hold
LOCAL lnShow_meeting_control_toolbar
LOCAL lnAllow_show_zoom_windows
LOCAL lnAnnotation
LOCAL lnWhiteboard
LOCAL lnRemote_control
LOCAL lnNon_verbal_feedback
LOCAL lnBreakout_room
LOCAL lnBreakout_room_schedule
LOCAL lnRemote_support
LOCAL lnClosed_caption
LOCAL lnFar_end_camera_control
LOCAL lnGroup_hd
LOCAL lnVirtual_background
LOCAL lnAlert_guest_join
LOCAL lnAuto_answer
LOCAL lnSending_default_email_invites
LOCAL lnUse_html_format_email
LOCAL lnStereo_audio
LOCAL lnOriginal_audio
LOCAL lnShow_device_list
LOCAL lnOnly_host_view_device_list
LOCAL lnScreen_sharing
LOCAL lnWaiting_room
LOCAL lnShow_browser_join_link
LOCAL lnShow_a_join_from_your_browser_link
LOCAL lnJoin_from_mobile
LOCAL lnJoin_from_desktop
LOCAL lnAllow_live_streaming
LOCAL lnLive_streaming_facebook
LOCAL lnWorkplace_by_facebook
LOCAL lnLive_streaming_youtube
LOCAL lnCustom_live_streaming_service
LOCAL lcCustom_service_instructions
LOCAL lnEnable
LOCAL lcWebinar_live_streamingCustom_service_instructions
LOCAL lnLive_streaming_reminder
LOCAL lnWebinar_question_answer
LOCAL lnWebinar_chatEnable
LOCAL lnAllow_panelists_chat_with
LOCAL lnAllow_attendees_chat_with
LOCAL lnDefault_attendees_chat_with
LOCAL lnAllow_panelists_send_direct_message
LOCAL lnWebinar_chatAllow_users_save_chats
LOCAL lnAllow_auto_save_local_chat_file
LOCAL lnClosed_captioningEnable
LOCAL lnThird_party_captioning_service
LOCAL lnAuto_transcribing
LOCAL lnView_full_transcript
LOCAL lnSave_caption
LOCAL lnSlide_control
LOCAL lnMeeting_survey
LOCAL lnWebinar_pollingEnable
LOCAL lnAdvanced_polls
LOCAL lnWebinar_survey
LOCAL lnCloud_recording_available_reminder
LOCAL lnRecording_available_reminder_schedulers
LOCAL lnRecording_available_reminder_alternative_hosts
LOCAL lnJbh_reminder
LOCAL lnCancel_meeting_reminder
LOCAL lnAlternative_host_reminder
LOCAL lnSchedule_for_reminder
LOCAL lnLocal_recording
LOCAL lnCloud_recording
LOCAL lnRecord_speaker_view
LOCAL lnRecord_gallery_view
LOCAL lnRecord_audio_file
LOCAL lnSave_chat_text
LOCAL lnShow_timestamp
LOCAL lnRecording_audio_transcript
LOCAL lcAuto_recording
LOCAL lnCloud_recording_download
LOCAL lnCloud_recording_download_host
LOCAL lnAccount_user_access_recording
LOCAL lnHost_delete_cloud_recording
LOCAL lnThird_party_audio
LOCAL lcAudio_conference_info
LOCAL lnBlur_snapshot
LOCAL lnAllow_users_contact_support_via_chat
LOCAL lnToll_free_and_fee_based_toll_callEnable
LOCAL lnAllow_webinar_attendees_dial
LOCAL i
LOCAL lnCount_i

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

loQueryParams = CreateObject('Chilkat_9_5_0.JsonObject')
loQueryParams.UpdateString("option","meeting_authentication")

* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

loResp = loHttp.QuickRequestParams("GET","https://api.zoom.us/v2/groups/:groupId/settings",loQueryParams)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loQueryParams
    CANCEL
ENDIF

loSbResponseBody = CreateObject('Chilkat_9_5_0.StringBuilder')
loResp.GetBodySb(loSbResponseBody)

loJResp = CreateObject('Chilkat_9_5_0.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    RELEASE loResp
    RELEASE loHttp
    RELEASE loQueryParams
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

RELEASE loResp

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

* {
*   "schedule_meeting": {
*     "host_video": true,
*     "participant_video": true,
*     "audio_type": "both",
*     "join_before_host": true,
*     "force_pmi_jbh_password": true,
*     "require_password_for_scheduling_new_meetings": true,
*     "require_password_for_scheduled_meetings": true,
*     "require_password_for_instant_meetings": false,
*     "require_password_for_pmi_meetings": "all",
*     "pstn_password_protected": true,
*     "mute_upon_entry": true,
*     "upcoming_meeting_reminder": true
*   },
*   "in_meeting": {
*     "e2e_encryption": true,
*     "chat": true,
*     "allow_participants_chat_with": 2,
*     "allow_users_save_chats": 2,
*     "private_chat": true,
*     "auto_saving_chat": true,
*     "entry_exit_chime": "all",
*     "record_play_own_voice": false,
*     "feedback": true,
*     "post_meeting_feedback": true,
*     "co_host": true,
*     "polling": true,
*     "attendee_on_hold": true,
*     "show_meeting_control_toolbar": true,
*     "allow_show_zoom_windows": true,
*     "annotation": true,
*     "whiteboard": true,
*     "remote_control": true,
*     "non_verbal_feedback": true,
*     "breakout_room": true,
*     "breakout_room_schedule": true,
*     "remote_support": true,
*     "closed_caption": true,
*     "far_end_camera_control": true,
*     "group_hd": true,
*     "virtual_background": true,
*     "alert_guest_join": true,
*     "auto_answer": true,
*     "sending_default_email_invites": true,
*     "use_html_format_email": true,
*     "stereo_audio": true,
*     "original_audio": true,
*     "show_device_list": false,
*     "only_host_view_device_list": false,
*     "screen_sharing": true,
*     "waiting_room": true,
*     "show_browser_join_link": true,
*     "show_a_join_from_your_browser_link": true,
*     "join_from_mobile": true,
*     "join_from_desktop": true,
*     "allow_live_streaming": true,
*     "live_streaming_facebook": true,
*     "workplace_by_facebook": true,
*     "live_streaming_youtube": true,
*     "custom_live_streaming_service": true,
*     "custom_service_instructions": "specific instructions",
*     "webinar_live_streaming": {
*       "enable": true,
*       "live_streaming_service": [
*         "facebook",
*         "workplace_by_facebook",
*         "youtube",
*         "custom_live_streaming_service"
*       ],
*       "custom_service_instructions": "specific instructions",
*       "live_streaming_reminder": true
*     },
*     "webinar_question_answer": true,
*     "webinar_chat": {
*       "enable": true,
*       "allow_panelists_chat_with": 1,
*       "allow_attendees_chat_with": 1,
*       "default_attendees_chat_with": 1,
*       "allow_panelists_send_direct_message": true,
*       "allow_users_save_chats": 1,
*       "allow_auto_save_local_chat_file": true
*     },
*     "closed_captioning": {
*       "enable": true,
*       "third_party_captioning_service": false,
*       "auto_transcribing": true,
*       "view_full_transcript": true,
*       "save_caption": true
*     },
*     "slide_control": true,
*     "meeting_survey": true,
*     "webinar_polling": {
*       "enable": true,
*       "advanced_polls": true
*     },
*     "webinar_survey": true
*   },
*   "email_notification": {
*     "cloud_recording_available_reminder": true,
*     "recording_available_reminder_schedulers": true,
*     "recording_available_reminder_alternative_hosts": true,
*     "jbh_reminder": true,
*     "cancel_meeting_reminder": true,
*     "alternative_host_reminder": true,
*     "schedule_for_reminder": true
*   },
*   "recording": {
*     "local_recording": true,
*     "cloud_recording": true,
*     "record_speaker_view": true,
*     "record_gallery_view": false,
*     "record_audio_file": true,
*     "save_chat_text": true,
*     "show_timestamp": false,
*     "recording_audio_transcript": false,
*     "auto_recording": "none",
*     "cloud_recording_download": true,
*     "cloud_recording_download_host": true,
*     "account_user_access_recording": false,
*     "host_delete_cloud_recording": true
*   },
*   "telephony": {
*     "third_party_audio": true,
*     "audio_conference_info": "1234656"
*   },
*   "other_options": {
*     "blur_snapshot": true,
*     "allow_users_contact_support_via_chat": true
*   },
*   "audio_conferencing": {
*     "toll_free_and_fee_based_toll_call": {
*       "enable": true,
*       "numbers": [
*         {
*           "code": "64",
*           "country_code": "US",
*           "country_name": "United States",
*           "number": "+1 5550100",
*           "display_number": "+1 5550100(Atlanta)"
*         },
*         {
*           "code": "64",
*           "country_code": "US",
*           "country_name": "United States",
*           "number": "+1 5550101",
*           "display_number": "+1 5550101(SanJose)"
*         }
*       ],
*       "allow_webinar_attendees_dial": true
*     }
*   }
* }

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

lnHost_video = loJResp.BoolOf("schedule_meeting.host_video")
lnParticipant_video = loJResp.BoolOf("schedule_meeting.participant_video")
lcAudio_type = loJResp.StringOf("schedule_meeting.audio_type")
lnJoin_before_host = loJResp.BoolOf("schedule_meeting.join_before_host")
lnForce_pmi_jbh_password = loJResp.BoolOf("schedule_meeting.force_pmi_jbh_password")
lnRequire_password_for_scheduling_new_meetings = loJResp.BoolOf("schedule_meeting.require_password_for_scheduling_new_meetings")
lnRequire_password_for_scheduled_meetings = loJResp.BoolOf("schedule_meeting.require_password_for_scheduled_meetings")
lnRequire_password_for_instant_meetings = loJResp.BoolOf("schedule_meeting.require_password_for_instant_meetings")
lcRequire_password_for_pmi_meetings = loJResp.StringOf("schedule_meeting.require_password_for_pmi_meetings")
lnPstn_password_protected = loJResp.BoolOf("schedule_meeting.pstn_password_protected")
lnMute_upon_entry = loJResp.BoolOf("schedule_meeting.mute_upon_entry")
lnUpcoming_meeting_reminder = loJResp.BoolOf("schedule_meeting.upcoming_meeting_reminder")
lnE2e_encryption = loJResp.BoolOf("in_meeting.e2e_encryption")
lnChat = loJResp.BoolOf("in_meeting.chat")
lnAllow_participants_chat_with = loJResp.IntOf("in_meeting.allow_participants_chat_with")
lnAllow_users_save_chats = loJResp.IntOf("in_meeting.allow_users_save_chats")
lnPrivate_chat = loJResp.BoolOf("in_meeting.private_chat")
lnAuto_saving_chat = loJResp.BoolOf("in_meeting.auto_saving_chat")
lcEntry_exit_chime = loJResp.StringOf("in_meeting.entry_exit_chime")
lnRecord_play_own_voice = loJResp.BoolOf("in_meeting.record_play_own_voice")
lnFeedback = loJResp.BoolOf("in_meeting.feedback")
lnPost_meeting_feedback = loJResp.BoolOf("in_meeting.post_meeting_feedback")
lnCo_host = loJResp.BoolOf("in_meeting.co_host")
lnPolling = loJResp.BoolOf("in_meeting.polling")
lnAttendee_on_hold = loJResp.BoolOf("in_meeting.attendee_on_hold")
lnShow_meeting_control_toolbar = loJResp.BoolOf("in_meeting.show_meeting_control_toolbar")
lnAllow_show_zoom_windows = loJResp.BoolOf("in_meeting.allow_show_zoom_windows")
lnAnnotation = loJResp.BoolOf("in_meeting.annotation")
lnWhiteboard = loJResp.BoolOf("in_meeting.whiteboard")
lnRemote_control = loJResp.BoolOf("in_meeting.remote_control")
lnNon_verbal_feedback = loJResp.BoolOf("in_meeting.non_verbal_feedback")
lnBreakout_room = loJResp.BoolOf("in_meeting.breakout_room")
lnBreakout_room_schedule = loJResp.BoolOf("in_meeting.breakout_room_schedule")
lnRemote_support = loJResp.BoolOf("in_meeting.remote_support")
lnClosed_caption = loJResp.BoolOf("in_meeting.closed_caption")
lnFar_end_camera_control = loJResp.BoolOf("in_meeting.far_end_camera_control")
lnGroup_hd = loJResp.BoolOf("in_meeting.group_hd")
lnVirtual_background = loJResp.BoolOf("in_meeting.virtual_background")
lnAlert_guest_join = loJResp.BoolOf("in_meeting.alert_guest_join")
lnAuto_answer = loJResp.BoolOf("in_meeting.auto_answer")
lnSending_default_email_invites = loJResp.BoolOf("in_meeting.sending_default_email_invites")
lnUse_html_format_email = loJResp.BoolOf("in_meeting.use_html_format_email")
lnStereo_audio = loJResp.BoolOf("in_meeting.stereo_audio")
lnOriginal_audio = loJResp.BoolOf("in_meeting.original_audio")
lnShow_device_list = loJResp.BoolOf("in_meeting.show_device_list")
lnOnly_host_view_device_list = loJResp.BoolOf("in_meeting.only_host_view_device_list")
lnScreen_sharing = loJResp.BoolOf("in_meeting.screen_sharing")
lnWaiting_room = loJResp.BoolOf("in_meeting.waiting_room")
lnShow_browser_join_link = loJResp.BoolOf("in_meeting.show_browser_join_link")
lnShow_a_join_from_your_browser_link = loJResp.BoolOf("in_meeting.show_a_join_from_your_browser_link")
lnJoin_from_mobile = loJResp.BoolOf("in_meeting.join_from_mobile")
lnJoin_from_desktop = loJResp.BoolOf("in_meeting.join_from_desktop")
lnAllow_live_streaming = loJResp.BoolOf("in_meeting.allow_live_streaming")
lnLive_streaming_facebook = loJResp.BoolOf("in_meeting.live_streaming_facebook")
lnWorkplace_by_facebook = loJResp.BoolOf("in_meeting.workplace_by_facebook")
lnLive_streaming_youtube = loJResp.BoolOf("in_meeting.live_streaming_youtube")
lnCustom_live_streaming_service = loJResp.BoolOf("in_meeting.custom_live_streaming_service")
lcCustom_service_instructions = loJResp.StringOf("in_meeting.custom_service_instructions")
lnEnable = loJResp.BoolOf("in_meeting.webinar_live_streaming.enable")
lcWebinar_live_streamingCustom_service_instructions = loJResp.StringOf("in_meeting.webinar_live_streaming.custom_service_instructions")
lnLive_streaming_reminder = loJResp.BoolOf("in_meeting.webinar_live_streaming.live_streaming_reminder")
lnWebinar_question_answer = loJResp.BoolOf("in_meeting.webinar_question_answer")
lnWebinar_chatEnable = loJResp.BoolOf("in_meeting.webinar_chat.enable")
lnAllow_panelists_chat_with = loJResp.IntOf("in_meeting.webinar_chat.allow_panelists_chat_with")
lnAllow_attendees_chat_with = loJResp.IntOf("in_meeting.webinar_chat.allow_attendees_chat_with")
lnDefault_attendees_chat_with = loJResp.IntOf("in_meeting.webinar_chat.default_attendees_chat_with")
lnAllow_panelists_send_direct_message = loJResp.BoolOf("in_meeting.webinar_chat.allow_panelists_send_direct_message")
lnWebinar_chatAllow_users_save_chats = loJResp.IntOf("in_meeting.webinar_chat.allow_users_save_chats")
lnAllow_auto_save_local_chat_file = loJResp.BoolOf("in_meeting.webinar_chat.allow_auto_save_local_chat_file")
lnClosed_captioningEnable = loJResp.BoolOf("in_meeting.closed_captioning.enable")
lnThird_party_captioning_service = loJResp.BoolOf("in_meeting.closed_captioning.third_party_captioning_service")
lnAuto_transcribing = loJResp.BoolOf("in_meeting.closed_captioning.auto_transcribing")
lnView_full_transcript = loJResp.BoolOf("in_meeting.closed_captioning.view_full_transcript")
lnSave_caption = loJResp.BoolOf("in_meeting.closed_captioning.save_caption")
lnSlide_control = loJResp.BoolOf("in_meeting.slide_control")
lnMeeting_survey = loJResp.BoolOf("in_meeting.meeting_survey")
lnWebinar_pollingEnable = loJResp.BoolOf("in_meeting.webinar_polling.enable")
lnAdvanced_polls = loJResp.BoolOf("in_meeting.webinar_polling.advanced_polls")
lnWebinar_survey = loJResp.BoolOf("in_meeting.webinar_survey")
lnCloud_recording_available_reminder = loJResp.BoolOf("email_notification.cloud_recording_available_reminder")
lnRecording_available_reminder_schedulers = loJResp.BoolOf("email_notification.recording_available_reminder_schedulers")
lnRecording_available_reminder_alternative_hosts = loJResp.BoolOf("email_notification.recording_available_reminder_alternative_hosts")
lnJbh_reminder = loJResp.BoolOf("email_notification.jbh_reminder")
lnCancel_meeting_reminder = loJResp.BoolOf("email_notification.cancel_meeting_reminder")
lnAlternative_host_reminder = loJResp.BoolOf("email_notification.alternative_host_reminder")
lnSchedule_for_reminder = loJResp.BoolOf("email_notification.schedule_for_reminder")
lnLocal_recording = loJResp.BoolOf("recording.local_recording")
lnCloud_recording = loJResp.BoolOf("recording.cloud_recording")
lnRecord_speaker_view = loJResp.BoolOf("recording.record_speaker_view")
lnRecord_gallery_view = loJResp.BoolOf("recording.record_gallery_view")
lnRecord_audio_file = loJResp.BoolOf("recording.record_audio_file")
lnSave_chat_text = loJResp.BoolOf("recording.save_chat_text")
lnShow_timestamp = loJResp.BoolOf("recording.show_timestamp")
lnRecording_audio_transcript = loJResp.BoolOf("recording.recording_audio_transcript")
lcAuto_recording = loJResp.StringOf("recording.auto_recording")
lnCloud_recording_download = loJResp.BoolOf("recording.cloud_recording_download")
lnCloud_recording_download_host = loJResp.BoolOf("recording.cloud_recording_download_host")
lnAccount_user_access_recording = loJResp.BoolOf("recording.account_user_access_recording")
lnHost_delete_cloud_recording = loJResp.BoolOf("recording.host_delete_cloud_recording")
lnThird_party_audio = loJResp.BoolOf("telephony.third_party_audio")
lcAudio_conference_info = loJResp.StringOf("telephony.audio_conference_info")
lnBlur_snapshot = loJResp.BoolOf("other_options.blur_snapshot")
lnAllow_users_contact_support_via_chat = loJResp.BoolOf("other_options.allow_users_contact_support_via_chat")
lnToll_free_and_fee_based_toll_callEnable = loJResp.BoolOf("audio_conferencing.toll_free_and_fee_based_toll_call.enable")
lnAllow_webinar_attendees_dial = loJResp.BoolOf("audio_conferencing.toll_free_and_fee_based_toll_call.allow_webinar_attendees_dial")
i = 0
lnCount_i = loJResp.SizeOfArray("in_meeting.webinar_live_streaming.live_streaming_service")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcStrVal = loJResp.StringOf("in_meeting.webinar_live_streaming.live_streaming_service[i]")
    i = i + 1
ENDDO
i = 0
lnCount_i = loJResp.SizeOfArray("audio_conferencing.toll_free_and_fee_based_toll_call.numbers")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcCode = loJResp.StringOf("audio_conferencing.toll_free_and_fee_based_toll_call.numbers[i].code")
    lcCountry_code = loJResp.StringOf("audio_conferencing.toll_free_and_fee_based_toll_call.numbers[i].country_code")
    lcCountry_name = loJResp.StringOf("audio_conferencing.toll_free_and_fee_based_toll_call.numbers[i].country_name")
    lcV_number = loJResp.StringOf("audio_conferencing.toll_free_and_fee_based_toll_call.numbers[i].number")
    lcDisplay_number = loJResp.StringOf("audio_conferencing.toll_free_and_fee_based_toll_call.numbers[i].display_number")
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loQueryParams
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

curl -G -d "option=meeting_authentication"
	-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/groups/:groupId/settings

Postman Collection Item JSON

{
  "name": "Get a group's settings",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/groups/:groupId/settings?option=meeting_authentication",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "groups",
        ":groupId",
        "settings"
      ],
      "query": [
        {
          "key": "option",
          "value": "meeting_authentication",
          "description": "Optional query parameters: \n* `meeting_authentication` — Use this query parameter to 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. \n* `recording_authentication` — Use this query parameter to 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. \n* `meeting_security` — Use this query parameter to view the meeting security settings applied to the user's account."
        }
      ],
      "variable": [
        {
          "key": "groupId"
        }
      ]
    },
    "description": "Get settings for a [group](https://support.zoom.us/hc/en-us/articles/204519819-Group-Management-). \n**Prerequisite**: Pro, Business, or Education account<br>\n**Scopes**: `group:read:admin`<br>\n \n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`"
  },
  "response": [
    {
      "name": "**Error Code**: `200` <br>\nOnly available for paid account.\n\n**HTTP Status Code**: `200` <br>\nGroup Settings Returned.\n",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/groups/:groupId/settings?option=meeting_authentication",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "groups",
            ":groupId",
            "settings"
          ],
          "query": [
            {
              "key": "option",
              "value": "meeting_authentication"
            }
          ],
          "variable": [
            {
              "key": "groupId"
            }
          ]
        }
      },
      "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\": \"both\",\n  \"join_before_host\": true,\n  \"force_pmi_jbh_password\": true,\n  \"require_password_for_scheduling_new_meetings\": true,\n  \"require_password_for_scheduled_meetings\": true,\n  \"require_password_for_instant_meetings\": false,\n  \"require_password_for_pmi_meetings\": \"all\",\n  \"pstn_password_protected\": true,\n  \"mute_upon_entry\": true,\n  \"upcoming_meeting_reminder\": true\n },\n \"in_meeting\": {\n  \"e2e_encryption\": true,\n  \"chat\": true,\n  \"allow_participants_chat_with\": 2,\n  \"allow_users_save_chats\": 2,\n  \"private_chat\": true,\n  \"auto_saving_chat\": true,\n  \"entry_exit_chime\": \"all\",\n  \"record_play_own_voice\": false,\n  \"feedback\": true,\n  \"post_meeting_feedback\": true,\n  \"co_host\": true,\n  \"polling\": true,\n  \"attendee_on_hold\": true,\n  \"show_meeting_control_toolbar\": true,\n  \"allow_show_zoom_windows\": true,\n  \"annotation\": true,\n  \"whiteboard\": true,\n  \"remote_control\": true,\n  \"non_verbal_feedback\": true,\n  \"breakout_room\": true,\n  \"breakout_room_schedule\": true,\n  \"remote_support\": true,\n  \"closed_caption\": true,\n  \"far_end_camera_control\": true,\n  \"group_hd\": true,\n  \"virtual_background\": true,\n  \"alert_guest_join\": true,\n  \"auto_answer\": true,\n  \"sending_default_email_invites\": true,\n  \"use_html_format_email\": true,\n  \"stereo_audio\": true,\n  \"original_audio\": true,\n  \"show_device_list\": false,\n  \"only_host_view_device_list\": false,\n  \"screen_sharing\": true,\n  \"waiting_room\": true,\n  \"show_browser_join_link\": true,\n  \"show_a_join_from_your_browser_link\": true,\n  \"join_from_mobile\": true,\n  \"join_from_desktop\": true,\n  \"allow_live_streaming\": true,\n  \"live_streaming_facebook\": true,\n  \"workplace_by_facebook\": true,\n  \"live_streaming_youtube\": true,\n  \"custom_live_streaming_service\": true,\n  \"custom_service_instructions\": \"specific instructions\",\n  \"webinar_live_streaming\": {\n   \"enable\": true,\n   \"live_streaming_service\": [\n    \"facebook\",\n    \"workplace_by_facebook\",\n    \"youtube\",\n    \"custom_live_streaming_service\"\n   ],\n   \"custom_service_instructions\": \"specific instructions\",\n   \"live_streaming_reminder\": true\n  },\n  \"webinar_question_answer\": true,\n  \"webinar_chat\": {\n   \"enable\": true,\n   \"allow_panelists_chat_with\": 1,\n   \"allow_attendees_chat_with\": 1,\n   \"default_attendees_chat_with\": 1,\n   \"allow_panelists_send_direct_message\": true,\n   \"allow_users_save_chats\": 1,\n   \"allow_auto_save_local_chat_file\": true\n  },\n  \"closed_captioning\": {\n   \"enable\": true,\n   \"third_party_captioning_service\": false,\n   \"auto_transcribing\": true,\n   \"view_full_transcript\": true,\n   \"save_caption\": true\n  },\n  \"slide_control\": true,\n  \"meeting_survey\": true,\n  \"webinar_polling\": {\n   \"enable\": true,\n   \"advanced_polls\": true\n  },\n  \"webinar_survey\": true\n },\n \"email_notification\": {\n  \"cloud_recording_available_reminder\": true,\n  \"recording_available_reminder_schedulers\": true,\n  \"recording_available_reminder_alternative_hosts\": true,\n  \"jbh_reminder\": true,\n  \"cancel_meeting_reminder\": true,\n  \"alternative_host_reminder\": true,\n  \"schedule_for_reminder\": true\n },\n \"recording\": {\n  \"local_recording\": true,\n  \"cloud_recording\": true,\n  \"record_speaker_view\": true,\n  \"record_gallery_view\": false,\n  \"record_audio_file\": true,\n  \"save_chat_text\": true,\n  \"show_timestamp\": false,\n  \"recording_audio_transcript\": false,\n  \"auto_recording\": \"none\",\n  \"cloud_recording_download\": true,\n  \"cloud_recording_download_host\": true,\n  \"account_user_access_recording\": false,\n  \"host_delete_cloud_recording\": true\n },\n \"telephony\": {\n  \"third_party_audio\": true,\n  \"audio_conference_info\": \"1234656\"\n },\n \"other_options\": {\n  \"blur_snapshot\": true,\n  \"allow_users_contact_support_via_chat\": true\n },\n \"audio_conferencing\": {\n  \"toll_free_and_fee_based_toll_call\": {\n   \"enable\": true,\n   \"numbers\": [\n    {\n     \"code\": \"64\",\n     \"country_code\": \"US\",\n     \"country_name\": \"United States\",\n     \"number\": \"+1 5550100\",\n     \"display_number\": \"+1 5550100(Atlanta)\"\n    },\n    {\n     \"code\": \"64\",\n     \"country_code\": \"US\",\n     \"country_name\": \"United States\",\n     \"number\": \"+1 5550101\",\n     \"display_number\": \"+1 5550101(SanJose)\"\n    }\n   ],\n   \"allow_webinar_attendees_dial\": true\n  }\n }\n}"
    },
    {
      "name": "**HTTP Status Code:** `404` <br>\n**Error Code:** `4130` <br>\nGroup does not exist: {groupId}.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/groups/:groupId/settings?option=meeting_authentication",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "groups",
            ":groupId",
            "settings"
          ],
          "query": [
            {
              "key": "option",
              "value": "meeting_authentication"
            }
          ],
          "variable": [
            {
              "key": "groupId"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}