# Basic Phone number

## Basic Phone number verification

<mark style="color:green;">`POST`</mark> `https://api.myidentitypay.com/api/v2/biometrics/merchant/data/verification/phone_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 |                 |

#### Request Body

| Name                                     | Type   | Description  |
| ---------------------------------------- | ------ | ------------ |
| number<mark style="color:red;">\*</mark> | String | Phone number |

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

```javascript
{
    "status": true,
    "response_code": "00",
    "message": "Phone Verification successful",
    "data": {
        "middlename": "",
        "surname": "",
        "phoneNumber": "",
        "dateOfBirth": "",
        "firstName": ""
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
