# Deposit an issued check

**POST** `/simulate/deposit-issued-check`

Simulates the deposit of an issued check. This API is always enabled, and is not affected by the operating hours of the sandbox Fed Check21 system.

### Body Parameters

- `account_number_id` `string` — The account number ID to deposit an externally issued check against
- `check_number` `number` — The externally issued check number to deposit
- `check_transfer_id` `string` — The ID of the check transfer to deposit
- `deposited_amount` `integer` — The amount to deposit, used for positive pay testing

**Request**

```shell
curl 'https://api.column.com/simulate/deposit-issued-check' \
  -XPOST \
  -u :<YOUR API KEY> \
  -d check_transfer_id="<check_transfer_id>" \
```

**Response 200**

```json
{}
```
