Basic CAC

TEST DATA

rc_number: 092932

company_name: TEST COMPANY

Verify CAC

POST {{URL}}/api/v2/biometrics/merchant/data/verification/cac

This endpoint allows you to verify an RC number of a business

Query Parameters

NameTypeDescription

rc_number*

number

The Regsitration number of the company

company_type*

string

BN or RC or IT or LL or LLP. Default is RC

Headers

NameTypeDescription

x-api-key*

string

<your secret key>

app-id*

String

<your app id>

{
    "status": true,
    "detail": "Verification Successfull",
    "response_code": "00",
    "data": {
        "rc_number": "",
        "company_name": "",
        "email_address": "",
        "branchAddress": "",
        "city": "",
        "address": "",
        "company_status": "",
        "lga": "",
        "date_of_registration": "",
        "state": "",
        "directors": [
            {
                "name": "test A",
                "designation": "Director"
            },
            {
                "name": "test B",
                "designation": "Director"
            },
            {
                "name": "test C",
                "designation": "Secretary"
            },
            {
                "name": "test D",
                "designation": "Shareholder"
            },
            {
                "name": "test E",
                "designation": "Deponent"
            }
        ]
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}

Last updated