action zoom_get_zraccount_settings {
label: "Get Zoom Room account settings"
description: "Get details on Account Settings of a Zoom Room. With this API, you can view either the **Account Meeting Settings** or the **Alert Settings** (Client Alert Settings and Notfication Settings) of the Zoom Rooms account. By default, only **Account Meeting Settings** are returned. To view only **Alert Settings**, specify `alert` as the value of the `setting_type` query parameter.
\n**Prerequisites:**
\n* Zoom Room licenses\n* Owner or Admin privileges on the Zoom Account.
\n**Scopes:** `room:read:admin`
\n \n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`"
provider: zoom
method: GET
path: "/rooms/account_settings"
encoding: json
input: {
type: "object"
properties: {
setting_type: {
type: "string"
enum: ["meeting", "alert"]
}
}
required: ["setting_type"]
additionalProperties: false
}
output: {
type: "object"
}
}