action zoom_account_billing {
label: "Get billing information"
description: "Get [billing information](https://support.zoom.us/hc/en-us/articles/201363263-About-Billing) of a sub account.
Only master accounts can use this API. Zoom allows only [approved partners](https://marketplace.zoom.us/docs/api-reference/master-account-apis) to use master APIs and manage sub accounts' billing information. Email the partner programs team at **partner-success@zoom.us** for more details.
\n\n**Prerequisites:**\n* Pro or a higher paid account with master account option enabled.
\n\n**Scope**:`billing:master`
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`
\n\n"
provider: zoom
method: GET
path: "/accounts/{accountId}/billing"
encoding: json
input: {
type: "object"
properties: {
accountId: {
type: "string"
}
}
required: ["accountId"]
additionalProperties: false
}
output: {
type: "object"
description: "Billing Contact object."
required: ["address", "city", "country", "email", "first_name", "last_name", "phone_number", "state", "zip"]
properties: {
address: {
type: "string"
description: "Billing Contact's address."
}
apt: {
type: "string"
description: "Billing Contact's apartment/suite."
}
city: {
type: "string"
description: "Billing Contact's city."
}
country: {
type: "string"
description: "Billing Contact's Country [ID](https://marketplace.zoom.us/docs/api-reference/other-references/abbreviation-lists#countries) in abbreviated format."
}
email: {
type: "string"
description: "Billing Contact's email address."
}
first_name: {
type: "string"
description: "Billing Contact's first name."
}
last_name: {
type: "string"
description: "Billing Contact's last name."
}
phone_number: {
type: "string"
description: "Billing Contact's phone number."
}
state: {
type: "string"
description: "Billing Contact's state."
}
zip: {
type: "string"
description: "Billing Contact's zip/postal code."
}
}
}
}