Biometric
Catalog
- Example
- Create New KYC Profile
- Retrieve the details of the created profile
- Edit the profile
- List all profiles
- Export Profile
- Correspondence list
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
Class | Api |
---|---|
CreateProfile | Create New KYC Profile |
ProfileDetail | Get KYC Profile |
EdProfile | Update KYC Profile |
LsProfile | List KYC Profile |
RmProfile | Delete KYC Profile |
ExportProfile | Export KYC Profile |
Updated 8 months ago