Shared hosting account not found
https://developer.hostup.se/errors/shared_hosting_not_found {
"type": "https://developer.hostup.se/errors/shared_hosting_not_found",
"title": "Shared hosting account not found",
"status": 404,
"detail": "The requested shared hosting account could not be found.",
"code": "shared_hosting_not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/shared-hosting/{accountId} Get shared-hosting account PATCH /api/v2/shared-hosting/{accountId} Rename shared-hosting account GET /api/v2/shared-hosting/{accountId}/account-details Get hosting access details GET /api/v2/shared-hosting/{accountId}/actions/billing-cycle Get hosting billing-cycle options POST /api/v2/shared-hosting/{accountId}/actions/billing-cycle Change hosting billing cycle POST /api/v2/shared-hosting/{accountId}/actions/cancel Cancel shared-hosting account GET /api/v2/shared-hosting/{accountId}/actions/pause Get hosting pause status POST /api/v2/shared-hosting/{accountId}/actions/pause Pause shared hosting DELETE /api/v2/shared-hosting/{accountId}/actions/pause Cancel hosting pause POST /api/v2/shared-hosting/{accountId}/actions/renew Renew shared hosting ...and 6 more endpoints.
const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "shared_hosting_not_found") {
// Handle: Shared hosting account not found
console.error(problem.detail);
}
}