Face Authentication Check
Run a face authentication check
Check request
Attribute
Type
Description
Example request
curl -X POST https://api.complycube.com/v1/checks \
-H 'Authorization: <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"clientId":"CLIENT_ID",
"livePhotoId":"LIVE_PHOTO_ID",
"type": "face_authentication_check"
}'const check = await complycube.check.create("CLIENT_ID", {
livePhotoId: "LIVE_PHOTO_ID",
type: "face_authentication_check"
});check = cc_api.check.create(
'CLIENT_ID',
'face_authentication_check',
livePhotoId='LIVE_PHOTO_ID'
)$result = $ccapi->checks()->create(
'CLIENT_ID',
[
'type' => 'face_authentication_check',
'livePhotoId' => 'LIVE_PHOTO_ID'
]
);Result object
Outcome
Breakdown
faceAuthentication object
faceAuthentication object
