v10

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

Retrieve Bills for an Account ID

Retrieve all Bills for the given Account.

This endpoint retrieves all Bills associated with a specific Account ID in a specified organization. The list can also be paginated for easier management.

This is useful for obtaining an overview of all billing activities for an Account.

get/organizations/{orgId}/bills/accountid/{accountId}

Path parameters

orgIdstring required

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

accountIdstring required

The unique identifier (UUID) of the Account for which you want to retrieve Bills.

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.

additionalstring[]

Comma separated list of additional fields.

Response

Returns list of Bills for the requested account

nextTokenstring

Example response

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