Biometric

Catalog


Example

For the complete example, please see here .

Face Verification

$create = new CreateProfile();
[$result, $err] = $client->Do($create);
if ($err != null) {
    echo 'ApiError:'.$err->message;
    return;
}
file_put_contents('create_profile_result.json', json_encode($result));
$profileId = $result->id;

Liveness

$detail = new ProfileDetail();
$detail->profileId = $profileId;
[$result, $err] = $client->Do($detail);
if ($err != null) {
    echo 'ApiError:'.$err->message;
    return;
}
file_put_contents('profile_detail_result.json', json_encode($result));

Correspondence list

ClassApi
CreateProfileCreate New KYC Profile
ProfileDetailGet KYC Profile
EdProfileUpdate KYC Profile
LsProfileList KYC Profile
RmProfileDelete KYC Profile
ExportProfileExport KYC Profile