Get the list of banned IPs
Returns the list of banned IPs
- Available on all panels
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
- banlist object[]- array of objects with IP addresses (string) and ban time in seconds (integer) address string- Possible values: - >= 7 charactersand- <= 15 characters- string that contains banned ip address time integer- time of ban in seconds 
{
  "banlist": [
    {
      "address": "192.168.0.1",
      "time": 60
    },
    {
      "address": "192.168.1.1",
      "time": 180
    }
  ]
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error stringerror message 
{
  "error": "Log In"
}
{
  "error": "Log In"
}
Loading...