port25_requirements_not_met

HTTP 403

Port 25 requirements not met

Type URL

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

Detail message

Port 25 requests require BankID verification or a VPS prepaid on annual billing.

Example response

{
  "type": "https://developer.hostup.se/errors/port25_requirements_not_met",
  "title": "Port 25 requirements not met",
  "status": 403,
  "detail": "Port 25 requests require BankID verification or a VPS prepaid on annual billing.",
  "code": "port25_requirements_not_met",
  "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 === "port25_requirements_not_met") {
    // Handle: Port 25 requirements not met
    console.error(problem.detail);
  }
}