How to manually unlock a user from the Account Lockout Policy
When a user is blocked by the account lockout policy, the Account Owner can manually unlock the access. Only recommended for exceptional or urgent cases.
This guide walks you through manually unlocking a user from the Account Lockout Policy and guarantee access.
Go to Account Lockout Policy referenceManually unlock a user
To manually unlock a user, you need to get the logs and confirm the data about the user. Then, execute the unlocking. To do so:
- Run the following
GET
request in your terminal to retrieve the data of blocked users.
- You’ll receive a response similar to this:
Where:
Key | Description |
---|---|
count | Represents the number of blocked user accounts. Example: 2 |
id | Represents the unique identifier for a user |
lockout | Integer |
- Save the ID of the user you want to unlock.
- Run the following
DELETE
request in your terminal, replacing{id}
with the user ID you retrieved in the previous steps, to unlock the specific user.
- You’ll receive a response similar to this:
Done. The user was unlocked and now is available to log in again.