Account with Name Comparism
Verify bank account number
This endpoint allows businesses to verify a client's bank account number with name comparison. With this endpoint, you can quickly and easily check that the account number provided by the customers is valid and matches the name on the account.
You enter the bank account number and the name of the client using the endpoint, and it instantly returns a response. The response tells you whether the account number is valid, and whether the name on the account matches the name provided by the client.
TEST DATA
number: 1010101010
customer_name: John Doe
bank_code: 214
POST
{{URL}}/identitypass/verification/bank_account/comparism
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | Phone number |
bank_code | Code of the user's bank |
customer | Code of the user's bank |
Sample Response
{
"status": true,
"detail": "Verification Successfull",
"response_code": "00",
"account_data": {
"account_number": "1010101010",
"account_name": "John Doe",
"bank_id": 9
},
"comparism_data": {
"status": false,
"confidence": 0.05555555555555555
},
"verification": {
"status": "VERIFIED",
"reference": "f29c1268-3e1f-43f4-92ef-feb9b71af6d2",
"endpoint": "Bank Account Comparism"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
account_data | An object containing the following fields: |
account_number | The account number of the bank account. |
account_name | The name of the account. |
bank_id | The ID of the bank that the account is held with. |
comparism_data | Data about the comparison of the account to other accounts. |
status | The status of the comparison. |
confidence | The confidence level of the comparison. |
verification | It holds additional details about the verification process. |
status | Indicates the status of the verification. |
reference | It is a string representing a unique reference or identifier associated with the verification process. |
endpoint | The endpoint that was used to perform the verification. |
Updated about 1 year ago