action zoom_account_trusted_domain {
label: "Get trusted domains"
description: "Get trusted domains of a sub account. To get the trusted domains of a master account, use `me` as the value for the `accountId` path parameter.\n\n**Prerequisites:**
\n* The sub account must be a paid account.
\n**Scope:** `account:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`"
provider: zoom
method: GET
path: "/accounts/{accountId}/trusted_domains"
encoding: json
input: {
type: "object"
properties: {
accountId: {
type: "string"
}
}
required: ["accountId"]
additionalProperties: false
}
output: {
properties: {
trusted_domains: {
type: "array"
description: "List of trusted domains"
items: {
type: "string"
}
}
}
}
}