Logo
Zoom Public API Documentation

List sub accounts' billing invoice reports

GET {{baseUrl}}/accounts/billing/invoice_reports?next_page_token=<string>

Use this API to list sub accounts' invoice reports.

This API can only be used by Master accounts that pay all billing charges of their associated Pro or higher sub accounts. Zoom only allows approved partners to use Master account API and manage sub accounts' billing information. Email the partner programs team at partner-success@zoom.us for more details.

one request to this API every 1 second. Prerequisites: * A Pro or a higher plan with the Master account option enabled. * The sub account must be a paid account whose billing charges are paid by its Master account.

Scopes: billing:master

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
next_page_token
string The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "invoice_reports": [ { "id": "<string>", "start_date": "<date>", "end_date": "<date>", "accounts_total_number": "<integer>", "remaining_days": "<integer>", "status": "Completed" }, { "id": "<string>", "start_date": "<date>", "end_date": "<date>", "accounts_total_number": "<integer>", "remaining_days": "<integer>", "status": "Processing" } ] }



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

ENDPOINTS