# Receive a realtime transfer

**POST** `/simulate/transfers/realtime/receive-credit`

Simulates an incoming realtime transfer to an account for the amount specified.

### Body Parameters

- `amount` `number` _(required)_ — Amount (in cents) to credit the account. e.g. $1.75 would be represented by 175
- `currency_code` `string` _(required)_ — The three-letter currency code defined in ISO 4217. e.g. `USD`
- `destination_account_number_id` `string` _(required)_ — Identifier for the account to credit

**Request**

```shell
curl 'https://api.column.com/simulate/transfers/realtime/receive-credit' \
  -X POST \
  -u :<YOUR API KEY> \
  -d destination_account_number_id="<destination_account_number_id>" \
  -d amount="100000" \
  -d currency_code="USD"
```

**Response 200**

```json
{}
```
