Wallet Data
✓ - required value
? - optional, value or null
✕ - always appears as null
Variable | Type | Description |
---|---|---|
<Object> | <Object> | Generic wallet data object. The object structure differs through e-wallets and bank accounts |
{
"full_name": "John Johnson",
"bank_account": "11112222333344",
"bank_name": "Random Bank, London",
"bank_code": "AABBCC",
"iban": "GB999911112222333344"
}
Following in an example dummy wallet data format
Variable | Type | Description |
---|---|---|
wallet_data.login | varchar(50) | Required. Login as specified in the e-wallet account |
{
"login": "johnjohnson1"
}
Following in an example dummy bank account data format
Variable | Type | Description |
---|---|---|
wallet_data.full_name | varchar(50) | Required. Full name as registered in the bank |
wallet_data.bank_account | varchar(32) | Required. Customer's bank account number |
wallet_data.bank_name | varchar(32) | Required. Customer's bank name |
wallet_data.bank_code | varchar(32) | Required. Customer's bank code |
wallet_data.iban | varchar(32) | Required. Customer's IBAN |
{
"full_name": "John Johnson",
"bank_account": "11112222333344",
"bank_name": "Random Bank, London",
"bank_code": "AABBCC",
"iban": "GB999911112222333344"
}