Bank Accounts 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

KeyDescription
app-idYour App ID
x-api-keyYour Secret Key

Request Body

KeyDescription
numberPhone number
bank_codeCode of the user's bank
customerCode 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

ResponseDescription
statusIndicates that the request was successful.
detailThis field indicates the detail of the response.
response_codeRepresents the response code.
account_dataAn object containing the following fields:
account_numberThe account number of the bank account.
account_nameThe name of the account.
bank_idThe ID of the bank that the account is held with.
comparism_dataData about the comparison of the account to other accounts.
statusThe status of the comparison.
confidenceThe confidence level of the comparison.
verificationIt holds additional details about the verification process.
statusIndicates the status of the verification.
referenceIt is a string representing a unique reference or identifier associated with the verification process.
endpointThe endpoint that was used to perform the verification.