# Tax Identification Number

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

number: Rc323479 or 12392112349 or 08082838487

channel: CAC or TIN or Phone
{% endhint %}

## Verify TIN

<mark style="color:green;">`POST`</mark> `https://api.myidentitypay.com/api/v1/biometrics/merchant/data/verification/tin`

This endpoint allows you to verify a tax identification number.

#### 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>     |

#### Request Body

| Name                                      | Type   | Description                       |
| ----------------------------------------- | ------ | --------------------------------- |
| channel<mark style="color:red;">\*</mark> | string | TIN,CAC or Phone - (Default: TIN) |
| number<mark style="color:red;">\*</mark>  | string | TIN or RC number or Phone number  |

{% tabs %}
{% tab title="200 " %}

```
{
    "status": true,
    "detail": "TIN Verification Successful",
    "response_code": "00",
    "data": {
        "taxpayer_name": "",
        "cac_reg_number": "",
        "firstin": "",
        "jittin": "",
        "tax_office": "",
        "email": "",
        "phone_number": ""
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
