payment_method_unavailable

HTTP 409

No available payment method

Type URL

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

Example response

{
  "type": "https://developer.hostup.se/errors/payment_method_unavailable",
  "title": "No available payment method",
  "status": 409,
  "detail": "No available payment method.",
  "code": "payment_method_unavailable",
  "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 === "payment_method_unavailable") {
    // Handle: No available payment method
    console.error(problem.detail);
  }
}