SystemSettingsLockoutPolicy

SystemSettingsLockoutPolicy - List

Lists the Lockout policy settings.

GET

https://api-server-host-name/configapi/{pool_UUID}/{logpoint_identifier}/SystemSettingsLockoutPolicy

Success Response

[
    {
        "failed_login": 7,
        "id": "4f031d6bccba252fb00fbf61",
        "locked_out_time": 20
    }
]

SystemSettingsLockoutPolicy - PolicyReset

Resets the Lockout policy parameters to default values:

  • Default locked_out_time: 30 minutes

  • Default failed_login: 5

POST

Request Example

Success Response

SystemSettingsLockoutPolicy - Save

Updates the existing Lockout policy settings.

POST

Parameters

Field
Label in UI
Type
Description

failed_login

Lockout threshold

int

Number of failed attempts at logon a user is allowed before the account is locked out. Default value is 5. Mandatory Field.

locked_out_time

Lockout duration

int

Time in minutes that the account can be locked out. Default value is 30. Mandatory Field.

Request Example

Success Response

Last updated

Was this helpful?