network_limit_reached

HTTP 409

Private network limit reached

Type URL

https://developer.hostup.se/errors/network_limit_reached

Detail message

You have reached your private network limit. Request an increase from support.

Example response

{
  "type": "https://developer.hostup.se/errors/network_limit_reached",
  "title": "Private network limit reached",
  "status": 409,
  "detail": "You have reached your private network limit. Request an increase from support.",
  "code": "network_limit_reached",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "network_limit_reached") {
    // Handle: Private network limit reached
    console.error(problem.detail);
  }
}