Face Authentication

Authenticate your users using face biometric

Face Authentication

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

This endpoint allows you to authentication user's face

Query Parameters

NameTypeDescription

image*

string

Users image url(png,, jpg,base64)

Headers

NameTypeDescription

x-api-key*

string

<your merchant 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