← all problem types

ip_not_allowed

403 Forbidden   The caller's IP address is not on this token's allow-list.

When you get it

The caller's IP address is not on this token's allow-list. It is always answered with HTTP 403 - one code means one status, so a client may key its handling on either.

Fields it carries

Inside each errors[] entry, beside pointer:

clientIp
The IP address the request was seen to come from.

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 understood and refused. Retrying it unchanged will fail identically - change the token, the rights, or the plan named in the fields above.

Shape

{
  "type":   "https://api2.host-tracker.com/problems/ip-not-allowed",
  "title":  "The caller's IP address is not on this token's allow-list.",
  "status": 403,
  "code":   "ip_not_allowed",
  "errors": [
    { "clientIp": … }
  ]
}