ValidateBankAccount
Summary
Validates and evaluates the account and bank details in the context of direct debit payment. It is possible to transfer either the combination of BankCode and AccountNumber or IBAN and BIC
Resource URL | /api/v3/validate/bank-account |
---|---|
HTTP method | POST |
Content type | application/json; text/json; |
Input parameters
Parameter name | Location | Type / Model | Description |
---|---|---|---|
request | body | ValidateBankAccountRequest |
required
|
Responses
HTTP status code | Model | Comment |
---|---|---|
OK(200) | ValidateBankAccountResponse | Validate Bank Account Response |
BadRequest (400) | array of ResponseMessage | Request failed. Check response model for list of Errors. |
Unauthorized (401) | API user is unauthorized. Make sure X-Auth-Key header is sent. | |
InternalServerError (500) | Request failed due internal error. Retry request later. |
Examples
{
"bankAccount": "NB0000188645236",
"bankCode": "XYZ000ABC"
}
{
"isValid": true
}