iDFace Max Upgrade
The iDFace MAX Access Controller is sold by default in its Lite version. The Lite version has a limit of 10,000 faces and supports SIP intercom by default. The customer can choose to purchase the Pro license to upgrade the device, which will increase the limit of faces to 20,000 (with registration photo) or to 50,000 and 100,000 (without registration photo), depending on the purchased mode.
To perform the upgrade, the customer must first contact Control iD and purchase the license. After that, with their license key in hand, the customer can choose to perform the upgrade in one of three ways, depending on the mode.
Attention: Each time the mode is changed, the device will restart and all data will be permanently deleted.
Pro Mode 50k
Limit Options:
- 20,000 facial biometrics: with storage of the registration photo.
- 50,000 facial biometrics: without storage of the registration photo.
Upgrade Options:
- GUI - Settings > General Settings > Configure Pro Mode > Upgrade Pro Mode 50k
- Web - Settings > Upgrade Pro Mode > Pro 50k
- API - Endpoint:
/upgrade_fifty_thousand_face_templates.fcgi
POST /upgrade_fifty_thousand_face_templates.fcgi
Parameters
- password (string): Receives a password that must be provided by Control iD to enable Pro mode on the device.
Response
- This call has no return.
Request Example
Upgrades the iDFace to Pro 50k version:
$.ajax({
url: "/upgrade_fifty_thousand_face_templates.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
password: "ABCDE12345"
})
});
Pro Mode 100k
Limit Options:
- 20,000 facial biometrics: with storage of the registration photo.
- 50,000 facial biometrics: without storage of the registration photo.
- 100,000 facial biometrics: without storage of the registration photo.
Upgrade Options:
- GUI - Settings > General Settings > Configure Pro Mode > Upgrade Pro Mode 100k
- Web - Settings > Upgrade Pro Mode > Pro 100k
- API - Endpoint:
/upgrade_hundred_thousand_face_templates.fcgi
POST /upgrade_hundred_thousand_face_templates.fcgi
Parameters
- password (string): Receives a password that must be provided by Control iD to enable Pro mode on the device.
Response
- This call has no return.
Request Example
Upgrades the iDFace to Pro 100k version:
$.ajax({
url: "/upgrade_hundred_thousand_face_templates.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
password: "ABCDE12345"
})
});