SEPA
Create a new receiver account for receiver
Create a New Direct Entry 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.
* is mandatory parameter
Example body request
{
"receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75",
"iban": "DE89370400440532013000",
"bic": "DEUTDEFFXXX"
}
Response
{
"message": "Receiver account created successfully",
"payload": {
"receiver_account_id": "c7ded40b-1524-49f4-ae3f-ee974cbe6fdd",
"receiver_id": "a2bb66db-7067-44a2-8067-1393b682bc75",
"status": "pending",
"confirm_status": "unconfirmed"
}
}
Last updated