---
title: "Create deposit quote"
method: POST
path: "/ledger/cash-deposits/quotes"
tags: ["ledger-cash deposits"]
---

# Create deposit quote

`POST /ledger/cash-deposits/quotes`

Create quote for cash deposit

## Request body

- CreateDepositQuoteRequest
  - `payinCurrency` string, required — Currency the customer pays in.
  - `accountCurrency` string, required — Currency of the account to be credited.
  - `amount` number, required
  - `unitCurrency` string — Should be same as one of pay-in or account currencies. Defaults to account currency if not provided.

## Response `200`

Quote created

- CashDepositQuote
  - `id` string, uuid, required — Unique identifier for the deposit quote.
  - `accountCurrency` string, required — Currency of the account to be credited.
  - `payinCurrency` string, required — Currency the customer pays in.
  - `rate` number, required — Exchange rate applied for this quote
  - `minimumAmount` number, required — Minimum amount allowed for this quote
  - `maximumAmount` number, required — Maximum amount allowed for this quote
  - `minimumPayinAmount` number — Minimum pay-in amount allowed for this quote
  - `maximumPayinAmount` number — Maximum pay-in amount allowed for this quote
  - `expiresAt` string, date-time, required — Timestamp field.

## Other responses

- `400` — Request could not be validated
- `401` — Client is not authorized to make request

---

[API](https://skmtc.net/nestechops/apis/onboard-external-api-gateway.md) · [All operations](https://skmtc.net/nestechops/apis/onboard-external-api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nestechops/onboard-external-api-gateway/revisions/29661adc1ffc/schema)
