ID-FACE matching

These endpoints allow merchants to verify a user against their registered image using their ID Cards(Voters card, National ID card E.T.C)

TEST DATA

image: https://asset.cloudinary.com/dh3i1wodq/a52b7d

Verify User's Identity

POST https://api.myidentitypay.com/api/v2/biometrics/merchant/user/id_verification

This endpoint allows you to verify user's ID card against an image of the user

Query Parameters

NameTypeDescription

image*

string

Url of the image of the user's ID card to verify

Headers

NameTypeDescription

x-api-key*

string

<your merchant secret key>

app-id*

String

<your app id>

{
    "status": true,
    "response_code": "00",
    "detail": "Authentication Successful",
    "face_data": {
        "status": true,
        "response_code": "00",
        "message": "Fatch Match",
        "confidence": 99.99919891357422
    },
    "data": {
        "face_image": "<base64 image>",
        "email": "",
        "first_name": "",
        "last_name": "",
        "is_active": true
    }
}

Last updated