From Bright Pattern Documentation
Line 8: | Line 8: | ||
=== HTTP Method === | === HTTP Method === | ||
PUT | PUT | ||
+ | |||
+ | === Content-Type === | ||
+ | application/json | ||
+ | |||
+ | === Parameters === | ||
+ | {|border="1" style="border-collapse:collapse" cellpadding="5" | ||
+ | | '''Parameter''' | ||
+ | | '''Data-Type''' | ||
+ | | '''Description''' | ||
+ | | '''Example''' | ||
+ | |- | ||
+ | | login_id | ||
+ | | string | ||
+ | | The username of the user | ||
+ | | "mo.williams" | ||
+ | |} | ||
+ | |||
+ | === Request Body === | ||
+ | Empty. All you need is the username in the URL. | ||
+ | |||
== Response == | == Response == | ||
+ | In response to a successful request, the "locketOut" state is set to "false." | ||
+ | |||
+ | You can verify the user's lockstate in ''Contact Center Administrator > Users & Teams > [[5.3:Contact-center-administrator-guide/Users | Users]]''. | ||
+ | |||
+ | === Example Response === | ||
{ | { | ||
"lockedOut":false | "lockedOut":false |
Revision as of 18:41, 11 March 2019
• 5.2
<translate>= Clear User Lock State= Resets a temporary lockout if a user's account has been temporarily locked out after too many invalid login attempts.
Request
URL
http[s]://<host>/configapi/v2/user/lock/<login_id>
HTTP Method
PUT
Content-Type
application/json
Parameters
Parameter | Data-Type | Description | Example |
login_id | string | The username of the user | "mo.williams" |
Request Body
Empty. All you need is the username in the URL.
Response
In response to a successful request, the "locketOut" state is set to "false."
You can verify the user's lockstate in Contact Center Administrator > Users & Teams > Users.
Example Response
{ "lockedOut":false }
</translate>