Verification Failed
https://developer.hostup.se/errors/verification_failed {
"type": "https://developer.hostup.se/errors/verification_failed",
"title": "Verification Failed",
"status": 403,
"detail": "Verification Failed.",
"code": "verification_failed",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "verification_failed") {
// Handle: Verification Failed
console.error(problem.detail);
}
}