IBAN Tokenization
How to Tokenize IBANs
Riverty offers you two different approaches to tokenizing the consumer's IBAN.
Either, you collect the IBAN on your own, or you use the Hosted Fields to securely collect that information. The following process is almost the same.
Tokenization with direct input of the IBAN
If the consumer enters the IBAN into one of your input forms, you simply need to collect that input and send it to our validateBankAccount endpoint.
As an outcome the IBAN will be validated and a token will be created. This token can be sent into the authorization request.
Request
{
"bankAccount": "DE123...",
"bankCode": "string",
"createToken": true
}
Response
{
"isValid": true,
"token": "string"
}
Tokenization with input of the IBAN via Hosted Fields
If the consumer enters the IBAN into the Hosted Fields input forms, you simply need to receive the nonce from the Hosted Field and send it to our validateBankAccount endpoint
As an outcome the nonce will be validated and a token will be created. This token can be sent into the authorization request.