GET {{baseUrl}}/accounts/:accountId/billing/invoices/:invoiceId
Get detailed information about a specific invoice. Prerequisites:
* Account must be enrolled in Pro or a higher plan. Additional Rate Limit: You can make one API request every thirty minutes until the daily limit is reached. This API has a daily limit of 100 requests per account. Scopes: Rate Limit Label:
To retrieve a regular Zoom account's invoice details or a master account's invoice details, provide me
as the value of accountId
path parameter. To list a sub account's invoice details, provide the account ID of the sub account in the accountId
path parameter. billing:master
Heavy
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"balance": "<double>",
"currency": "<string>",
"due_date": "<string>",
"id": "<string>",
"invoice_date": "<string>",
"invoice_items": [
{
"charge_name": "<string>",
"charge_number": "<string>",
"charge_type": "<string>",
"end_date": "<date>",
"partner_sku": "<string>",
"purchase_order_number": "<string>",
"quantity": "<integer>",
"start_date": "<date>",
"tax_amount": "<double>",
"total_amount": "<double>"
},
{
"charge_name": "<string>",
"charge_number": "<string>",
"charge_type": "<string>",
"end_date": "<date>",
"partner_sku": "<string>",
"purchase_order_number": "<string>",
"quantity": "<integer>",
"start_date": "<date>",
"tax_amount": "<double>",
"total_amount": "<double>"
}
],
"invoice_number": "<string>",
"status": "\"Draft\"",
"target_date": "<string>",
"tax_amount": "<double>",
"total_amount": "<double>"
} |
ENDPOINTS