---
title: "Retrieve all Bank Transactions"
method: GET
path: "/consumers/{consumer_id}/invoicing/bank-transactions"
tags: ["Invoicing", "Bank transactions"]
---

# Retrieve all Bank Transactions

`GET /consumers/{consumer_id}/invoicing/bank-transactions`

Returns the list of bank transactions

## Path parameters

- `consumer_id` string, uuid, required

## Query parameters

- `page` integer
- `size` integer
- `date_from` string, date, nullable
- `date_to` string, date, nullable
- `bank_account_id` string, required
- `status` 'draft' | 'done'

## Response `200`

Successful Response

- ChiftPageInvoicingBankTransactionItem
  - `items` InvoicingBankTransactionItem[], required
    - `id` string, required — Technical id in Chift
    - `source_ref` Ref, required
      - `id` string, nullable — Technical id in the target software
      - `model` string, nullable — Name of the model/entity in the target software
    - `status` 'draft' | 'done', required
    - `bank_account_id` string, required — Technical id of the bank account in Chift
    - `amount` number, required — Transaction amount
    - `date` string, date, required — Transaction date
    - `description` string, nullable — Transaction description
    - `currency` string, required — Currency of the transaction
    - `currency_exchange_rate` number, nullable — Exchange rate at the date of the transaction
    - `accounting_code` string, nullable — Accounting code
    - `linked_documents` LinkedDocument[], nullable — List of linked documents
      - `id` string, required — Technical id in Chift
      - `source_ref` Ref, required
        - `id` string, nullable — Technical id in the target software
        - `model` string, nullable — Name of the model/entity in the target software
      - `amount` number, required — Amount linked to the document
      - `type` 'invoice' | 'other', required
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required

## Other responses

- `400` — Bad Request
- `422` — Validation Error

---

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