action zoom_get_zraccount_profile { label: "Get Zoom Room account profile" description: "Get details on the account profile of a Zoom Room. This information can only by accessed either by the Zoom Room Account Owner or a user with Zoom Rooms admin permission. To get information on an individual Room Profile, use [Get Zoom Room Profile API](https://marketplace.zoom.us/docs/api-reference/zoom-api/rooms/getzrprofile) instead.\n\n**Prerequisites:**
\n* Zoom account owner or Zoom Rooms admin permissions
\n\n**Scopes:** `room:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`" provider: zoom method: GET path: "/rooms/account_profile" encoding: json output: { type: "object" properties: { basic: { type: "object" properties: { required_code_to_ext: { type: "boolean" description: "Require code to exit out of the Zoom Rooms application to switch between other apps.\n" } room_passcode: { type: "string" description: "1-16 digit number or characters used to secure your Zoom Rooms application. This code must be entered on your Zoom Room Controller to change settings or to sign out." } support_email: { type: "string" format: "email" description: "The email address used for reporting Zoom Room issues." } support_phone: { type: "string" description: "The phone number used for reporting Zoom room issues." } } } } } }