v10

latestOpenAPI 3.0.1raw.githubusercontent.com2025-12-033223581.2 MB
Bill

List Bills

Retrieve a list of Bills.

This endpoint retrieves a list of all Bills for the given Account within the specified Organization. Optional filters can be applied such as by date range, lock status, or other attributes. The list can also be paginated for easier management.

get/organizations/{orgId}/bills

Path parameters

orgIdstring required

The unique identifier (UUID) of your Organization. The Organization represents your company as a direct customer of our service.

Query parameters

pageSizeinteger

Specifies the maximum number of Bills to retrieve per page.

nextTokenstring

The nextToken for multi-page retrievals. It is used to fetch the next page of Bills in a paginated list.

accountIdstring

Optional filter. An Account ID - returns the Bills for the single specified Account.

lockedboolean

Boolean flag specifying whether to include Bills with "locked" status.

  • TRUE - the list inlcudes "locked" Bills.
  • FALSE - excludes "locked" Bills from the list.
excludeLineItemsboolean

Exclude Line Items

includeBillTotalboolean

Include Bill Total

status'PENDING' | 'APPROVED'

Indicates whether the Bill has passed human/manual approval.

  • Pending - Bill has not yet been passed by a human reviewer.
  • Approved - Bill has been approved after manual review.

Only include Bills having the given status

billDatestring

The specific date in ISO 8601 format for which you want to retrieve Bills.

billDateStartstring

Only include Bills with bill dates equal to or later than this date.

billDateEndstring

Only include Bills with bill dates earlier than this date.

externalInvoiceDateStartstring

Only include Bills with external invoice dates equal to or later than this date.

externalInvoiceDateEndstring

Only include Bills with external invoice dates earlier than this date.

idsstring[]

Optional filter. The list of Bill IDs to retrieve.

billJobIdstring

List Bill entities by the bill job that last calculated them.

additionalstring[]

Comma separated list of additional fields.

billingFrequencystring nullable

Response

Returns the requested list of Bills

nextTokenstring

Example response

{
  "data": [
    {
      "timezone": "UTC",
      "currencyConversions": [
        {
          "from": "EUR",
          "to": "USD",
          "multiplier": 1.12
        }
      ]
    }
  ]
}