action zoom_account_managed_domain { label: "Get managed domains" description: "Get a sub account's [managed domains](https://support.zoom.us/hc/en-us/articles/203395207-What-is-Managed-Domain-).

\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.

\nTo get managed domains of the master account, provide `me` as the value for accountId in the path parameter. Provide the sub account's Account ID as the value of accountId path parameter to get managed domains of the sub account.

\n**Prerequisites:**
\n* Pro or a higher paid account with master account option enabled.
\n\n**Scope:** `account:read:admin`
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`
\n\n\n\n" provider: zoom method: GET path: "/accounts/{accountId}/managed_domains" encoding: json input: { type: "object" properties: { accountId: { type: "string" } } required: ["accountId"] additionalProperties: false } output: { type: "object" description: "List of managed domains." properties: { domains: { type: "array" description: "List of managed domain objects." items: { type: "object" } } total_records: { type: "integer" description: "Total records." } } } }