← all problem types

interval_below_type_floor

422 Unprocessable Content   The requested check interval is below this monitor type's floor.

When you get it

The requested check interval is below this monitor type's floor. It is always answered with HTTP 422 - one code means one status, so a client may key its handling on either.

Fields it carries

Inside each errors[] entry, beside pointer:

type
The monitor or contact type the rule applies to.
minInterval
The shortest check interval this monitor type supports, in seconds.

A field is omitted when the server genuinely does not know it - an absent member is never the same as an empty one.

How to fix it

The request was well-formed but a value is not acceptable. The fields above name the offending value and what would be accepted - fix the request and retry.

Shape

{
  "type":   "https://api2.host-tracker.com/problems/interval-below-type-floor",
  "title":  "The requested check interval is below this monitor type's floor.",
  "status": 422,
  "code":   "interval_below_type_floor",
  "errors": [
    { "type": …, "minInterval": … }
  ]
}