---
title: "List Transactions"
method: GET
path: "/organizations/{orgId}/balances/{balanceId}/transactions"
tags: ["Balances"]
---

# List Transactions

`GET /organizations/{orgId}/balances/{balanceId}/transactions`

Retrieve all Transactions for a specific Balance.

This endpoint returns a list of all Transactions associated with a specific Balance. You can paginate through the Transactions by using the `pageSize` and `nextToken` parameters.

## Path parameters

- `orgId` string, required
- `balanceId` string, required

## Query parameters

- `pageSize` integer
- `nextToken` string
- `transactionTypeId` string, nullable
- `entityType` 'BILL' | 'COMMITMENT' | 'USER' | 'SERVICE_USER' | 'SCHEDULER'
- `entityId` string, nullable

## Response `200`

Returns the list of Balance Transactions

- PaginatedBalanceTransactionResponseData
  - `data` BalanceTransactionResponse[]
    - `id` string, required — The UUID of the entity.
    - `version` integer — The version number: - **Create:** On initial Create to insert a new entity, the version is set at 1 in the response. - **Update:** On successful Update, the version is incremented by 1 in the response.
    - `description` string — A brief description explaining the purpose or context of the transaction.
    - `amount` number — The financial value of the transaction, as recorded in the balance.
    - `paid` number — The actual payment amount if the payment currency differs from the Balance currency.
    - `currencyPaid` string — The currency code such as USD, GBP, EUR of the payment, if it differs from the balance currency.
    - `entityType` 'BILL' | 'COMMITMENT' | 'USER' | 'SERVICE_USER' | 'SCHEDULER'
    - `entityId` string — The unique identifier (UUID) for the entity associated with the Transaction, as specified by the `entityType`.
    - `transactionTypeId` string — The unique identifier (UUID) for the Transaction type. This is obtained from the list of created Transaction Types within the Organization Configuration.
    - `appliedDate` string, date-time — The date *(in ISO 8601 format)* when the balance transaction was applied, i.e., when the balance was affected.
    - `transactionDate` string, date-time — The date *(in ISO 8601 format)* when the transaction was recorded in the system.
    - `dtCreated` string, date-time — The date and time *(in ISO 8601 format)* when the balance transaction was first created.
    - `dtLastModified` string, date-time — The date and time *(in ISO 8601 format)* when the balance transaction was last modified.
    - `createdBy` string — The unique identifier (UUID) for the user who created the balance transaction.
    - `lastModifiedBy` string — The unique identifier (UUID) for the user who last modified the balance transaction.
  - `nextToken` string

## Other responses

- `4XX` — Error message
- `5XX` — Error message

---

[API](https://skmtc.net/m3ter-com/apis/m3ter-api.md) · [All operations](https://skmtc.net/m3ter-com/apis/m3ter-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/m3ter-com/m3ter-api/revisions/ac93d1a9e6d9/schema)
