Skip to content

Setting and changing the PIN code

Information

The PIN is an important part of account management: after the first authorization in the personal account, the user can set a PIN code – a short password designed to keep the security of the user's servers in case of data leak or account hacking. The system requires a PIN code for all crucial operations with the server. If a PIN code is not required, check the Don't use PIN for an extra security checkbox in the PIN code management menu.

PIN hashes are stored separately from our billing and technical databases. Our employees do not know your PIN codes. The system asks for the PIN code once at the beginning of the session and then uses it during all sessions. The PIN is not recorded to the cookie or session key.

Attention

If the user forgot the PIN code or entered it incorrectly 3 times, then need to contact our support service to reset the PIN code via support or send a request to [email protected].

Setting a new PIN

Use the submenu with the username and select the Change PIN to set a new PIN code:

Then fill in the New PIN field and click the Set PIN button:

Example set/change PIN cURL:
curl -s "https://invapi.hostkey.com/eq.php" -X POST \
--data "action=set_pin" \
--data "token=YOUR_API_TOKEN" \
--data "old_pin=YOUR_PREVIOUS_PIN_CODE (optional)" \
--data "new_pin=NEW_PIN_VALUE"

Changing your current PIN

It requires selecting the Change PIN. item in the submenu with the username. Then enter the current (if set) and new PIN codes and press Set PIN button:

If the PIN code is not required, then it is necessary to check the box Don't use PIN for an extra security and enter the previously set PIN code (if it was set):

Example validate pin cURL:
curl -s "https://invapi.hostkey.com/eq.php" -X POST \
--data "action=check_pin" \
--data "token=YOUR_API_TOKEN" \
--data "pin=YOUR_PIN_CODE"