SSNIT With Face
Verify a Social Security and National Insurance Trust number with image
This endpoint allows verification of a Social Security and National Insurance Trust number with uploaded image. To verify a SSNIT with face you'll need to provide the customer's SSNIT number along with their image.
TEST DATA
number: H000000000000
image: https://res.cloudinary.com/dh3i1wodq/image/upload/v1675417496/cbimage_3_drqdoc.jpg
POST
{{URL}}/identitypass/verification/gh/ssnit_face
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | SSNIT number |
image | face image(base64,png, jpg) |
Sample Response
{
"status": true,
"response_code": "00",
"message": "SSNIT Information retrieved",
"face_data": {
"status": true,
"response_code": "00",
"message": "Face Match",
"confidence": 99.9
},
"data": {
"FSSNo": "H000000000000",
"FullName": "John Doe",
"BirthDate": "05/08/1996",
"Sex": "MALE",
"CardSerial": "D00000000000000000000",
"Photo": "9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwg....."
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
Face_data | This field contains information related to the face matching process. |
status | This field indicates the overall status of the face matching process. |
response_code | This field provides a code that represents the outcome of the face matching process. |
message | This field contains a human-readable message that describes the result of the face matching process. |
confidence | This field represents the level of confidence or certainty associated with the face matching result. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
FSSNo | The FSSNo is the unique identifier for an SSNIT contributor. |
FullName | The FullName is the full name of the SSNIT contributor. |
BirthDate | The BirthDate is the date of birth of the SSNIT contributor. |
Sex | The Sex is the gender of the SSNIT contributor. |
CardSerial | The CardSerial is the serial number of the SSNIT contributor's card. |
Photo | The Photo is a photo of the SSNIT contributor. |
Updated over 1 year ago