---
title: "Get cash transfers"
method: GET
path: "/cash"
tags: ["Cash Orders and Deposits (alpha)"]
---

# Get cash transfers

`GET /cash`

Get all cash transfers
> 🚧 Alpha > This is an Alpha spec-only endpoint. Feedback from the community is welcome. We may make breaking changes.

## Query parameters

- `from_posting_date` string
- `currency` string
- `to_effective_date` string
- `to_posting_date` string
- `customer_id` string
- `dc_sign` string
- `from_effective_date` string
- `max_amount` integer
- `destination_account_id` string
- `is_same_day` boolean
- `id` string
- `effective_date` string
- `destination_account_number` string
- `posting_date` string
- `network_status` string
- `originating_account_number` string
- `subtype` string
- `originating_account_id` string
- `partner_id` string
- `destination_account_owner_name` string
- `bank_id` string
- `reference_id` string
- `status` string
- `amount` string
- `min_amount` integer
- `originating_account_owner_name` string

## Response `200`

Retrieve all Cashier transfers

- CashList
  - `next_page_token` string — If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.
  - `transfers` CashResponse[], required — Array of transfers.
    - `amount` integer, required — Transfer amount in cents
    - `dc_sign` 'CREDIT' | 'DEBIT', required — Debit or credit sign
    - `source_data` object — Additional information to be added to the transfer
    - `client_bank_account` string — The bank account of the client.
    - `client_name` string — The name of the client.
    - `customer_id` string — The UUID of the Synctera customer resource that is the originator of the transfer.
    - `destination_account_id` string — The UUID of the Synctera account that is the destination of the transfer. For a transfer originated by the Synctera platform, this will be an external account resource, while for a transfer originated by the external account, this account will be an account resource.
    - `destination_account_number` string, string — The account number of the destination account.
    - `destination_account_owner_name` string — The account owner name of the destination account.
    - `effective_date` string, date, required — The effective date of the transaction once it gets posted
    - `failed` boolean — Whether the transfer failed or not.
    - `history` Action[]
      - `data` object, required
      - `message` string, required
      - `timestamp` string, date-time, required
    - `id` string, uuid, required — ID of the transfer
    - `is_same_day` boolean, required — Send the same day (use only is_same_day without specific effective_date).
    - `network_status` 'PENDING' | 'POSTED' | 'RETURNED' | 'REVERSED' — The network status of the transfer in the Synctera platform.
    - `original_reference_id` string — The original reference id of the transfer if it's a return.
    - `originating_account_id` string — The UUID of the Synctera account that is the origination of the transfer. For a transfer originated by the Synctera platform, this will be an account resource, while for a transfer originated by the external account, this will be an external account resource.
    - `originating_account_number` string, string — The account number of the originating account.
    - `originating_account_owner_name` string — The account owner name of the origination account.
    - `posting_date` string, date — The posting date of the transaction once it gets posted
    - `reference_id` string, required — The reference id of the transfer.
    - `status` 'CANCELLED' | 'EXPIRED' | 'INITIATED' | 'PENDING' | 'POSTED', required — The status of the transfer in the Synctera platform. This is automatically set upon the creation of a transfer. To cancel a transfer, the current status must be 'INITIATED' or 'PENDING' and the request status set to 'CANCELLED'. To trigger a return, the current status must be 'POSTED' and the returned status will be set to 'RETURNED' if successful.
    - `subtype` 'CASH_ORDER' | 'CASH_ORDER_REVERSAL' | 'DEPOSIT' | 'DEPOSIT_REVERSAL', required — The subtype of the transfer
    - `suspended` boolean — Whether the transfer is suspended or not.
    - `tenant_id` string, required — The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.
    - `transaction_id` string, uuid — The related transaction id of the transfer.

## Other responses

- `400` — BadRequest
- `401` — Unauthorized
- `403` — Forbidden error
- `500` — Internal server error

---

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