action zoom_account_settings { label: "Get settings" description: "Get the settings of an account.
\nTo get the settings of a master account, use `me` as the value for the `accountId` path parameter.

\n **Prerequisites**:\n * The account must be a paid account.
\n**Scopes**: `account:read:admin`\n
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`" provider: zoom method: GET path: "/accounts/{accountId}/settings" encoding: json input: { type: "object" properties: { accountId: { type: "string" } custom_query_fields: { type: "string" } option: { type: "string" enum: ["meeting_authentication", "recording_authentication"] } } required: ["accountId"] additionalProperties: false } output: { type: "object" } }