Get invoice details
GET
/accounts/{accountId}/billing/invoices/{invoiceId}
Billing
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
Rate Limit Label:
Heavy
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.
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.zoom.us/v2/accounts//billing/invoices/'
响应示例响应示例
200 - response
{
"balance": 2039,
"currency": "USD",
"due_date": "2020-08-07",
"id": "2c92fghvb0580",
"invoice_date": "2020-08-07",
"invoice_items": [
{
"charge_name": "Standard Biz Annual",
"charge_number": "C-00000004",
"charge_type": "Recurring",
"end_date": "2021-08-06",
"quantity": 10,
"start_date": "2020-08-07",
"tax_amount": 0,
"total_amount": 1999
},
{
"charge_name": "Cloud Recording 100 GB",
"charge_number": "C-00000005",
"charge_type": "Recurring",
"end_date": "2020-09-06",
"quantity": 1,
"start_date": "2020-08-07",
"tax_amount": 0,
"total_amount": 40
}
],
"invoice_number": "Shjmr5INV00000001",
"status": "Draft",
"target_date": "2020-08-07",
"tax_amount": 0,
"total_amount": 2039
}
请求参数
Path 参数
accountId
string
必需
invoiceId
string
必需
返回响应
修改于 2024-04-24 09:06:48