# Bank Onramp via EUR Virtual Account

> Assign an IBAN to a customer for repeatable EUR deposits that convert to cryptocurrency, optionally withdrawn to an address.

## Overview

This workflow assigns a bank account number (e.g., IBAN) to customers for receiving repeatable fiat deposits. These deposits are automatically converted to your specified cryptocurrency and can optionally be withdrawn to a customer's destination address.

Use the [POST `workflows/bank-deposit-to-onchain-address`](../../../api-reference/convert-fiat-to-crypto) endpoint endpoint to configure this workflow.

Alternatively, or in addition, you can [create a USD virtual account](bank-onramp-us.md).

For more details on this product, see the [Payin via Virtual Account](../../products/bank-onramp) Product page.

### Example Scenario

Consider a European fintech company using this workflow to streamline cross-border payments:

**Setup:**

- **CustomerID:** Company's treasury account
- **Input:** EUR bank deposits
- **Output:** USDC on Polygon network
- **Destination:** Corporate multi-sig wallet address

**Key Implementation Features:**

- Daily refresh of bank account details before display to prevent failed transfers from expired virtual IBAN details and banking coordinates
- Audit logs documenting that EUR-to-USDC conversions are irreversible once sent on-chain
- Real-time EUR/USDC price monitoring to alert treasury managers of market volatility
- Strategic timing capabilities for transfers during price stability periods

### Compatibility

Compatible with [Direct Onboarding](../onboarding/reliance-onboarding.md), [Hosted Onboarding](../onboarding/hosted-onboarding.md), and [Token Share Onboarding](../onboarding/token-share-onboarding.md).

## Recipe

Implement a scenario as described above by following the steps below.

<details>

<summary>1. Set Up the Environment</summary>

#### Register Your Interest

- Register your interest or book a demo by contacting Noah Support at business@noah.com.
- [Sign up for a Sandbox account](https://business.sandbox.noah.com/auth/signup) and contact Noah support to upgrade it to a business account.

#### Authenticate & Request Signing

For guidance on generating and configuring your API keys, see the [Authentication](../../api-concepts/authentication/configuration.md) page.

- Generate your Sandbox API key via the Business Dashboard.
- Include your API key in the `X-Api-Key` header of all requests.
- Request Signing is optional in Sandbox and required in Production. It is important to setup Request Signing before migrating to Production, to do this see the [Request Signing](../../api-concepts/authentication/signing.md) page.

#### Configure Webhooks

For guidance on webhook subscriptions and configuration, see the [Configuration](../../api-concepts/webhooks/configuration) page.

1. Optionally whitelist Noah's Webhook IP addresses, detailed on the [Whitelisting](../../api-concepts/webhooks/configuration.md#whitelisting) section.
2. Create a webhook subscription for the following event types, the details required to ingest the webhooks are also available on their respective pages.
   - `FiatDeposit` - see [FiatDeposit Event](../../api-concepts/webhooks/fiat-deposits).
   - `Transaction` - see [Transaction Event](../../api-concepts/webhooks/transactions).

:::tip

Throughout the Bank Onramp Workflow, you will receive three webhook events:

1. `FiatDeposit` - to notify you when the customer has sent a fiat payment to their assigned bank account number.
2. Cryptocurrency purchase `Transaction` event type - to notify you when the fiat has been converted to your chosen `CryptoCurrency` and credited to your Noah Account.
3. Cryptocurrency withdrawal `Transaction` - to notify you when the funds have been withdrawn to your customer's `DestinationAddress`.

:::

</details>

<details>

<summary>2. Create a Customer</summary>

Create customer records in one of two ways:

- Call the [PUT `customers/:CustomerID`](../../api-reference/create-update-customer) endpoint to pass our system with the [Reliance Model](../../getting-started/kyc.md#reliance-model) KYC data for a customer, in support of which the [Direct Onboarding recipe](../../recipes/onboarding/reliance-onboarding.md) is provided. If you do this, you must handle all your KYC checks yourself, and note that this is not compatible with [USD Virtual Account Creation](../../recipes/payin/bank-onramp-us.md).

- Call the [POST `onboarding/:CustomerID`](../../../api-reference/create-onboarding-session) endpoint, which means that you're using the [Standard Model](../../getting-started/kyc.md#standard-model), in support of which the [Hosted Onboarding recipe](../onboarding/hosted-onboarding.md) is provided. Noah will onboard your customer directly by allowing them to accept our terms and complete their Identity Verification attempt through a user interface. We will notify you once the customer's KYC status has been updated, via a webhook notification. Alternatively, start this process by using your Sumsub tokens for token sharing, as described in the [Token Share Onboarding recipe](../../recipes/onboarding/token-share-onboarding.md).

</details>

<details>

<summary>3. Call the Workflow Endpoint</summary>

Call the [POST `workflows/bank-deposit-to-onchain-address`](../../../api-reference/convert-fiat-to-crypto-session) endpoint, passing the following data:

- `CustomerID`: pertaining to the customer initiating the Onramp.
- Transaction Details: including the `FiatCurrency`, `CryptoCurrency`, withdrawal `Network` and `DestinationAddress`

#### Polygon Testnet Amoy Example

```typescript
curl -L -X POST 'https://api.sandbox.noah.com/v1/workflows/bank-deposit-to-onchain-address' \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: <X-Api-Key>' \
--data-raw '{
  "CustomerID": "321434324",
  "FiatCurrency": "EUR",
  "CryptoCurrency": "USDC_TEST",
  "Network": "PolygonTestAmoy",
  "DestinationAddress": {
    "Address": "0x370206496048f4eDbe60e3AcBD4CFEC50B2433bd"
  }
}'
```

#### Solana Devnet Example

```typescript
curl -L -X POST 'https://api.sandbox.noah.com/v1/workflows/bank-deposit-to-onchain-address' \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: <X-Api-Key>' \
--data-raw '{
  "CustomerID": "6482917350",
  "FiatCurrency": "EUR",
  "CryptoCurrency": "USDC_TEST",
  "Network": "SolanaDevnet",
  "DestinationAddress": {
    "Address": "ANVUJaJoVaJZELtV2AvRp7V5qPV1B84o29zAwDhPj1c2"
  }
}'
```

:::tip

For details on the USDC_TEST token above, see [Sandbox Testnet Currencies](../../api-concepts/testnet-currencies.md).

:::

You will receive a `200` response to indicate that the bank account number has been assigned to the customer and is prepared to accept a fiat deposit. All the newly created virtual account details are shown to you, including the account holder name, accout number, bank address, bank code, and payment method type. In the example below, all numbers are replaced by zeroes.

```typescript
{
    "AccountHolderName": "Noah LT UAB",
    "AccountNumber": "DE00000000000000000000",
    "BankAddress": {
        "City": "Munich",
        "Country": "DE",
        "PostCode": "00000",
        "State": "BY",
        "Street": "Maximilianstrasse 00"
    },
    "BankCode": "SXPYDEHHXXX",
    "BankName": "BANKING CIRCLE S.A.",
    "PaymentMethodID": "Bank/Sepa/EUR/SXPYDEHHXXX/DE0000000000000000000/000000000",
    "PaymentMethodType": "BankSepa",
    "VirtualAccountID": "abc123virtualaccountid",
    "DestinationAddress": {
        "Address": "0x370206496048f4eDbe60e3AcBD4CFEC50B2433bd"
    }
}
```

</details>

<details>

<summary>4. Receive Webhook Events</summary>

#### Receive the FiatDeposit Webhook

- You will receive a `FiatDeposit` event type when a customer performs a fiat Deposit into their assigned bank account number. See [FiatDeposit Event](../../api-concepts/webhooks/fiat-deposits).

#### Receive the Transaction Webhooks

- You will receive a `Transaction` event when Noah completes the fiat to Crypto exchange. See [Transaction Event](../../api-concepts/webhooks/transactions).
- You will receive a second `Transaction` event when Noah completes the Crypto Withdrawal to the customer's `DestinationAddress`.

</details>

<details>

<summary>5. Simulate a Fiat Deposit</summary>

In the Sandbox environment, you can simulate a fiat deposit, to trigger webhooks and transactions.

Use the `PaymentMethodID` retrieved from step 3 to call the [POST `sandbox/fiat-deposit/simulate`](../../../api-reference/simulate-fiat-deposit) endpoint.

```typescript
curl -L 'https://api.sandbox.noah.com/v1/sandbox/fiat-deposit/simulate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Api-Key: <X-Api-Key>' \
-d '{
  "PaymentMethodID": "string",
  "FiatAmount": "10.1",
  "FiatCurrency": "EUR"
}'
```

This triggers a `FiatDeposit` event, and the automated workflow will continue to the cryptocurrency purchase step.

</details>

## Guardrails

Your customers may use their individually assigned **Virtual Accounts** for use cases that comply with the Guardrails below.

---

### EUR Virtual Accounts

#### Receive First-Party Deposits from

- The customer’s **own** bank, fintech app, or brokerage account.

#### Receive Third-Party Deposits from

- **Registered businesses** sending EUR from a domestic business account
- A **close friend or family member’s** bank account

#### Limits

- **Single-transaction limit:** **15 000 EUR** — any transaction that exceeds this limit **triggers an Enhanced Due Diligence (EDD) review**.
- **Monthly aggregated limit:** **30 000 EUR** — the transaction that pushes a customer over this volume **triggers an EDD review**.

### Enhanced Due Diligence (EDD) Process

When an EDD review is triggered, Noah’s Compliance team will request documentation according to the KYC model your business uses.

| Model              | Who receives the Request for Information (RFI) | Information requested                                                                         |
| ------------------ | ---------------------------------------------- | --------------------------------------------------------------------------------------------- |
| **Reliance Model** | Your compliance team                           | • Proof of Source of Funds (SoF)• Full KYC pack• Purpose of the transaction |
| **Standard Model** | Your customer (via the email address on file)  | • Proof of Source of Funds (SoF)• Purpose of the transaction                         |

_Deposits requiring EDD are frozen at the `FiatDeposit` step until the requested information is received. Once EDD is completed, funds are unfrozen, converted to the defined cryptocurrency, and withdrawn to the customer’s `DestinationAddress`. If the documents are not provided within **10 days** of the RFI, the transaction will be rejected and the funds automatically refunded._

---

### Important Note

Noah reserves the right, at its sole discretion, to:

1. Request further information and/or documentation for any payment made by a third party; and
2. Amend and/or update these Guardrails from time to time.
