# Basic CAC (using Name)

{% hint style="info" %}
TEST DATA

company\_name: TEST COMPANY
{% endhint %}

## Verify CAC

<mark style="color:green;">`POST`</mark> `{{URL}}/api/v2/biometrics/merchant/data/verification/cac_w_name`

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

#### Query Parameters

| Name                                            | Type   | Description  |
| ----------------------------------------------- | ------ | ------------ |
| company\_name<mark style="color:red;">\*</mark> | string | Company name |

#### Headers

| Name                                        | Type   | Description        |
| ------------------------------------------- | ------ | ------------------ |
| x-api-key<mark style="color:red;">\*</mark> | string | \<your secret key> |
| app-id<mark style="color:red;">\*</mark>    | String | \<your app id>     |

{% tabs %}
{% tab title="200 Company details successfully retrieved." %}

```
{
    "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": ""
    }
}
```

{% endtab %}
{% endtabs %}
