Upgrade iDFace
The iDFace Access controller is sold by default in its Lite version. The Lite version has a limit of 3000 faces and does not support SIP intercom. The customer can choose to purchase the Pro license to upgrade the device, which will increase the limit of faces to 10,000, 15,000 or 30,000, depending on the mode, in addition to releasing the SIP intercom functionality. Activation of the licenses for 15,000 and 30,000 faces requires the prior purchase of the 10,000-face license.
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.
Pro Mode 10k
*Required to purchase subsequent modes
- GUI - Settings > General Settings > Configure Pro Mode > Upgrade Pro Mode 10k
- Web - Settings > Upgrade Pro Mode > Pro 10k
- API - Endpoint:
/upgrade_ten_thousand_face_templates.fcgi
POST /upgrade_ten_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 10k version:
$.ajax({
url: "/upgrade_ten_thousand_face_templates.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
password: "ABCDE12345"
})
});
Pro Mode 15k
*Dependent on the purchase of the 10k mode
- GUI - Settings > General Settings > Configure Pro Mode > Upgrade Pro Mode 15k
- Web - Settings > Upgrade Pro Mode > Pro 15k
- API - Endpoint:
/upgrade_fifteen_thousand_face_templates.fcgi
POST /upgrade_fifteen_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 15k version:
$.ajax({
url: "/upgrade_fifteen_thousand_face_templates.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
password: "ABCDE12345"
})
});
Pro Mode 30k
*Dependent on the purchase of the 10k mode
- GUI - Settings > General Settings > Configure Pro Mode > Upgrade Pro Mode 30k
- Web - Settings > Upgrade Pro Mode > Pro 30k
- API - Endpoint:
/upgrade_thirty_thousand_face_templates.fcgi
POST /upgrade_thirty_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 30k version:
$.ajax({
url: "/upgrade_thirty_thousand_face_templates.fcgi?session=" + session,
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({
password: "ABCDE12345"
})
});