v1

latestOpenAPI 3.0.32026-07-26170311887.2 KB
Billing Documents

List all Billing Document's Transaction Records

Retrieve a list of all billing document's transactions. Pagination of this endpoint is not indexed. count on the response body will always be null.

Required authorization scope: public.transaction_record:read

get/2024-09/billing_documents/{id}/transaction_records

Path parameters

idstring required

Billing document ID

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.

Response

list of billing document's transaction records

OR
string required

Transaction Records in CSV format

Example response

{
  "transaction_records": [
    {
      "id": "01563646-58c1-4607-8fe0-cae3e33c0001"
    }
  ]
}