Get banned IP addresses list
Returns list of banned IP addresses for login attempts with remaining ban time.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
banlist object[]
List of banned IP addresses with remaining ban duration
address stringBanned IP address
time int32Remaining ban time in seconds until removal from ban list
{
"banlist": [
{
"address": "192.168.0.222",
"time": 1200
}
]
}
{
"banlist": [
{
"address": "192.168.0.222",
"time": 1300
},
{
"address": "192.168.0.22",
"time": 120
}
]
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error string
Error message
{
"error": "Log In"
}
{
"error": "Log In"
}
Loading...