Account owner verification. You can use it to check the account owner details
Account owner verification. You can use it to check the account owner details
- application/json
Request Body required
- bankAccountNumber string required
10 digit bank account number
- bankCode BankCode required
3 digit bank code
Responses
- 200
Successul response.
- application/json
- Schema
- Example (from schema)
- SuccessResponseExample
- InvalidBankResponseExample
- InvalidAccountNumberResponseExample
- FailedResponseExample
Schema
- oneOf
- PayoutAccountVerificationSuccessResponse
- PayoutAccountVerificationFailedResponse
status string requiredPossible values: [
OK
]accountName string requiredstatus string requiredPossible values: [
FAILED
]error string requiredPossible values: [
CANNOT_VERIFY_ACCOUNT
,INVALID_ACCOUNT_NUMBER
,INVALID_BANK
]
{
"status": "OK",
"accountName": "John Doe"
}
{
"status": "OK",
"accountName": "John Doe"
}
{
"status": "FAILED",
"error": "INVALID_BANK"
}
{
"status": "FAILED",
"error": "INVALID_ACCOUNT_NUMBER"
}
{
"status": "FAILED",
"error": "CANNOT_VERIFY_ACCOUNT"
}
Loading...