---
title: "List Bank Transactions"
method: GET
path: "/ca/api/transaction"
tags: ["Cash Management"]
---

# List Bank Transactions

`GET /ca/api/transaction`

Retrieve a paginated list of bank transactions with optional filtering.

        Supports including soft-deleted records for audit and recovery purposes.
        When include_deleted=true, deleted records will have is_deleted=true
        and include deletion metadata (deleted_at timestamp).

## Query parameters

- `exclude_drafts` boolean
- `include_deleted` boolean
- `limit` integer
- `offset` integer

## Response `200`

- PaginatedBankTransactionList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` BankTransaction[], required
    - `id` integer, required
    - `is_deleted` boolean, required
    - `deleted_at` string, date-time, nullable, required
    - `account_name` string, required
    - `entity_name` string, nullable, required
    - `date_month` string, nullable, required
    - `date_year` string, nullable, required
    - `journal` integer, nullable, required
    - `journal_order` string, nullable, required
    - `intercompany_journal` integer, nullable, required
    - `reconciliation_report` integer, required
    - `reconciliation_report_ending_date` string, date, required
    - `last_modified_at` string, date-time, required
    - `transaction_id` string, uuid
    - `external_transaction_id` string, nullable
    - `currency` string
    - `amount` number, double, nullable
    - `amount_native` number, double, nullable
    - `posted_at` string, date-time, nullable
    - `status` string, nullable
    - `note` string, nullable
    - `bank_description` string, nullable
    - `external_memo` string, nullable
    - `merchant_id` string, nullable
    - `merchant_name` string, nullable
    - `merchant_nickname` string, nullable
    - `kind` string, nullable
    - `excluded` boolean
    - `assigned` boolean
    - `metadata` unknown
    - `created_at` string, date-time, required
    - `customer` integer, required
    - `account` integer, required

---

[API](https://skmtc.net/campfire/apis/campfire-developer-apis.md) · [All operations](https://skmtc.net/campfire/apis/campfire-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/campfire/campfire-developer-apis/revisions/6945ebc3180e/schema)
