# Settle check deposit

**POST** `/simulate/transfers/checks/settle`

Forces the settlement of a deposited check. After a check is deposited in sandbox, it is going to move from a `pending_deposit` state to a `deposited` state within an hour to simulate check forwarding to the Fed. This endpoint allows you to force settlement after the check is transitioned to a `deposited` state. This will transition the transfer to `settled` and make funds available immediately.

### Body Parameters

- `check_transfer_id` `string` _(required)_ — The ID of the check transfer to settle

**Request**

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

**Response 200**

```json
{}
```
