BVN Boolean Match 🇳🇬

Overview

The BVN boolean match services accepts the BVN, firstname, lastname, date of birth and confirms the validity of the BVN. This article will guide you on how to integrate to the BVN Boolean Match Service

🚧

Important!

Before you proceed, ensure you review the prerequisites for integrating to our APIs for a more detailed guide.

API Endpoint

https://api.verified.africa/sfx-verify/v3/id-service/

Request

Request ParameterDescriptionDescriptionTest Data
searchParameterRequiredThe BVN will be passed into this field12345678901
firstNameRequiredThe first name will be passed into this fieldABDULHAKeEM
lastNameRequiredThe last name will be passed into this fieldIDOWU
dobRequiredThe date of birth will be passed into this field04-09-1970
verificationTypeRequiredThis field is used to identify the service being called. Ensure to use the value provided exactly as providedBVN-BOOLEAN-MATCH
{
    "firstName": "ABDULHAKeEM",
    "lastName": "IDOWU",
    "searchParameter": "12345678901",
    "dob": "04-09-1970",
    "verificationType":"BVN-BOOLEAN-MATCH"
}

Response

Response ParameterTypeDescription
responseCodeStringPlease reference Response Codes page for details on all possible responses
descriptionStringThis is a description of the response received.
verificationTypeStringThe same verificationType passed in request will be returned here
verificationStatusStringThis field lets you know if the identity verification was successful. Options are:

VERIFIED: This means that the BVN is valid.
NOT VERIFIED This means that the BVN is invalid
PENDING This status means that the verification could not be completed. Refer to the responseCode for the specific failure reason
transactionStatusStringThis indicates the wallet debit status. The options are successful or failed.
transactionReferenceStringIf you supplied a transactionReference, the same will be returned here. Else, we would generate a reference and return that to you in this field.
transactionDateStringDate the transaction was done
searchParameterStringBVN used for the verification
responseJsonThis is a json containing the validity of the BVN data as retrieved from the service provider. For this service the data is: validFirstName: true, validLastName: true, validDateOfBirth: true
{
    "responseCode": "00",
    "description": "Successful",
    "verificationType": "BVN-BOOLEAN-MATCH",
    "verificationStatus": "VERIFIED",
    "transactionStatus": "SUCCESSFUL",
    "transactionReference": "1677841079768-1696858854992-f505ac5c-e457-4aec-9c76-862f63328e93",
    "transactionDate": "1696858857765",
    "searchParameter": "12345678901",
    "callBackUrl": null,
    "livenessScore": 0.0,
    "paymentRef": null,
    "response": {
        "validFirstName": true,
        "validLastName": true,
        "validDateOfBirth": true
    },
    "faceMatch": null
}