# SSNIT with Face

## Verify a Social Security and National Insurance Trust Number with face validation

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/gh/ssnit/face`

#### 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                 |
| ---------------------------------------- | ------ | --------------------------- |
| number<mark style="color:red;">\*</mark> | String | ssnit number                |
| image<mark style="color:red;">\*</mark>  | String | face image(base64,png, jpg) |

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

```javascript
{ 
    "status": true, 
    "response_code": "00", 
    "message": "SSNIT Information retrieved", 
    "face_data": {
        "status": true,
        "response_code": "00",
        "message": "Face Match",
        "confidence":99.9
    },
    "data": { 
        "FSSNo": "", 
        "FullName": "", 
        "BirthDate": "", 
        "Sex": "", 
        "CardSerial": "", 
        "Photo": "base64Image",
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
