Logo
Zoom Public API Documentation

Get billing invoice reports

GET {{baseUrl}}/report/billing/invoices?billing_id=<string>

Get department billing invoices reports for a specific billing period. Provide the billing_id of the billing period for which you would like to retrieve the invoices for. This ID can be retrieved from Get Billing Reports API.

Prerequisites:

  • Pro or a higher account with Department Billing option enabled. Contact the Zoom Support team to enable this feature.

Scopes: report:read:admin

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
billing_id
string (Required) Unique Identifier of the Billing Report. Retrieve this ID from the response of **Get Billing Reports** API request.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "currency": "<string>", "invoices": [ { "end_date": "<date>", "invoice_charge_name": "<string>", "invoice_number": "<string>", "quantity": "<integer>", "start_date": "<date>", "tax_amount": "<string>", "total_amount": "<string>" }, { "end_date": "<date>", "invoice_charge_name": "<string>", "invoice_number": "<string>", "quantity": "<integer>", "start_date": "<date>", "tax_amount": "<string>", "total_amount": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/report/billing/invoices?billing_id=<string>?billing_id=<string>' -H 'Accept: application/json'

ENDPOINTS