SEPA

Create a new receiver account for receiver

Create a New SEPA Receiver Account

POST /api/receiver-account/eur/sepa

Headers

Name
Value

x-api-key

<token>

signature

<token>

Body

Name
Type
Description

receiver_id*

string

Receiver ID of receiver account.

iban*

string

IBAN of receiver account.

bic

string

BIC/SWIFT Code of receiver account.

bank_country_code

string

2-letter ISO country code of the bank (e.g., "DE", "FR", "GB", "IE")

bank_name

string

Name of the receiver's bank

* is mandatory parameter

Example body request

Scenario 1: IBAN only

{
    "receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75",
    "iban": "DE89370400440532013000",
}

When only iban is provided, the system automatically extracts and populates bic, bank_country_code, and bank_name from the IBAN.

Scenario 2: IBAN with any optional parameters

When optional parameters are provided, the system uses the supplied values directly and skips auto-fill.

Response

Last updated