v1

latestOpenAPI 3.0.32026-07-26170311887.2 KB
Billing Documents

List all Billing Documents

Retrieve a list of all billing documents within range. Pagination of this endpoint is not indexed. count on the response body will always be null.

Required authorization scope: public.billing_document:read

get/2024-09/billing_documents

Query parameters

pageinteger

Page number to fetch, default: 1

per_pageinteger

Number of records per page to fetch, default: 20

from_datestring date

Beginning of date. Only accept YYYY-MM-DD format.

to_datestring date

End of date. Only accept YYYY-MM-DD format.

idstring

Billing document ID

type'receipt' | 'invoice' | 'credit_note' | 'subscription'

Document type

Response

list of billing documents

Example response

{
  "billing_documents": [
    {
      "id": "REUS202400333",
      "currency": "USD"
    }
  ]
}