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

# Get cash authorizations

`GET /cash/authorization`

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

## Query parameters

- `max_amount` integer
- `destination_account_id` string
- `client_name` string
- `from_order_date` string, date
- `to_order_date` string, date
- `id` string[]
- `order_date` string, date
- `originating_account_id` string
- `partner_id` string
- `bank_id` string
- `account_number` string
- `amount` string
- `min_amount` integer

## Response `200`

Retrieve all cash authorizations

- CashAuthorizationResponseList
  - `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.
  - `authorizations` CashAuthorizationResponse[], required — Array of authorizations.
    - `amount` integer, required — Transfer amount in cents
    - `authorization_type` 'CASH_ORDER' | 'DEPOSIT', required
    - `destination_account_id` string, uuid, required — The UUID of the Synctera account resource that is the destination of the transfer.
    - `order_date` string, date, required — The date the cash order was placed with cash distribution provider
    - `account_number` string, required — The account number of the client business the cash order is for. Known as "Location ID" in the cash order CSV files.
    - `client_name` string, required — The name of the client business the cash order is for.
    - `hold_id` string, uuid, required — ID of the hold created for this authorization
    - `id` string, uuid, required — ID of the transfer
    - `originating_account_id` string, uuid, required — The UUID of the Synctera account resource originating the transfer.
    - `status` 'CANCELLED' | 'COMPLETE' | 'EXPIRED' | 'PENDING', required
    - `tenant` string, required — The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

## 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)
