CreateIBAN: Create a Dedicated Virtual IBAN
Version | Description |
---|---|
1.0 |
How it works
This functionality enables you to generate virtual IBANs and link them to different payment accounts.
Request
XML
<CreateIBAN xmlns="Service_mb">
<wallet>string</wallet>
<country>string</country>
<wlLogin>string</wlLogin>
<wlPass>string</wlPass>
<language>string</language>
<version>string</version>
<walletIp>string</walletIp>
<walletUa>string</walletUa>
</CreateIBAN>
JSON
{
"wallet":"string",
"country":"string",
"wlLogin":"string",
"wlPass":"string",
"language":"string",
"version":"string",
"walletIp":"string",
"walletUa":"string"
}
Element | Description | Mandatory | Format | Example |
---|---|---|---|---|
wallet | Wallet ID | Yes | [1 :100] car | 33612345678 |
country | ISO2 code of the country from which the IBAN must be generated. List of possible codes:
| Yes | [2] car | FR |
Response
XML
<?xml version="1.0" encoding="utf-8"?>
<CreateIBANResult>
<ID>string</ID>
<IBAN>string</IBAN>
<BIC>string</BIC>
<HOLDER>string</HOLDER>
<DOM>string</DOM>
<S>string</S>
<MAXAVAILABLEIBANPERWALLET>string</MAXAVAILABLEIBANPERWALLET>
<MAXAVAILABLEIBAN>string</MAXAVAILABLEIBAN>
</CreateIBANResult>
JSON
{
"CreateIBANResult": {
"ID":"string",
"IBAN":"string",
"BIC":"string",
"HOLDER":"string",
"DOM":"string",
"S":"string",
"MAXAVAILABLEIBANPERWALLET":"string",
"MAXAVAILABLEIBAN":"string"
}
}
Version | Element | Description | Example |
---|---|---|---|
>= 1.0 | ID | ID of the IBAN | 255 |
>= 1.0 | IBAN | IBAN. | FR1420041010050500013M02606 |
>= 1.0 | BIC | BIC/SWIFT code | ABCDEFGHIJK |
>= 1.0 | HOLDER | IBAN owner: first name and last name, or enterprise name | Jean Dupont |
>= 1.0 | DOM | Domiciliation | 14 rue de la beaune 93100 montreuil France |
>= 1.0 | S | IBAN status | 5 |
>= 1.0 | MAXAVAILABLEIBANPERWALLET | IBAN left that can be generated for this wallet | 5 |
>= 1.0 | MAXAVAILABLEIBAN | IBAN left that can be generated in total | 120 |