HTTP - Management
Removed from your favourites
Unlock a user
Created by c.neale, last modified by m.summerfield on 18 Aug 2022
Unlocking a user can be done by POST'ing an action with type 'unlock' to the user's actions endpoint.
POST/api/security/users/{userIdentifier}/actions/
Parameter
Name | Parameter type | Type | Format | Description | Example | Required |
---|---|---|---|---|---|---|
UserIdentifier | path | string | user identifier | For convenience, User resources can be referenced by using one of several identifiers - username, email address or Id. | "82f73a9b-2a13-4d63-bcc1-e8ee5047b01c" or "t.durden" or "t.durden@fightclub.com" | true |
Example
HTTP
POST: /api/security/users/82f73a9b-2a13-4d63-bcc1-e8ee5047b01c/actions/
{
"type": "unlock"
}
Remarks
Permissions
Member of System Administrators
.