---
title: "Retrieve all transactions"
method: GET
path: "/consumers/{consumer_id}/payment/transactions"
tags: ["Payment", "Transactions"]
---

# Retrieve all transactions

`GET /consumers/{consumer_id}/payment/transactions`

Returns a list of transactions. Optionally transaction type and dates can be defined to retrieve transactions of a certain type from a certain date to another date

## Path parameters

- `consumer_id` string, uuid, required

## Query parameters

- `page` integer
- `size` integer
- `accounting_category` 'all' | 'unknown' | 'payout' | 'payout_cancel' | 'payment' | 'payment_cancel' | 'fee' | 'fee_cancel' | 'invoice' | 'internal_move'
- `starting_from` string, nullable
- `balance_id` string, nullable
- `payout_id` string, nullable
- `date_from` string, date, nullable
- `date_to` string, date, nullable
- `location_id` string, nullable

## Response `200`

Successful Response

- ChiftPageTransactionItemOut
  - `items` TransactionItemOut[], 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
    - `amount` number, required — Total amount incl. fee
    - `fee` number, required — Total fee
    - `currency` string, required — Currency
    - `exchange_rate` number, required — Exchange rate
    - `create_date` string, date-time, required — Create Date
    - `application_type` string, required — Type of the transaction as recorded in the target software
    - `accounting_category` 'all' | 'unknown' | 'payout' | 'payout_cancel' | 'payment' | 'payment_cancel' | 'fee' | 'fee_cancel' | 'invoice' | 'internal_move', required
    - `refund_id` string, nullable
    - `payment_id` string, nullable
    - `description` string, nullable — Description linked to the transaction
  - `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)
