No error log found
https://developer.hostup.se/errors/not_found {
"type": "https://developer.hostup.se/errors/not_found",
"title": "No error log found",
"status": 404,
"detail": "No PHP error log was found for ${domain} — the site has not logged any errors.",
"code": "not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/billing/payment-methods/contacts List invoice CC recipients POST /api/v2/billing/payment-methods/contacts Add invoice CC recipient DELETE /api/v2/billing/payment-methods/contacts Remove invoice CC recipient GET /api/v2/domains/availability Check domain availability POST /api/v2/domains/availability Check bulk domain availability GET /api/v2/me/preferences Get account preferences PATCH /api/v2/me/preferences Update account preferences GET /api/v2/shared-hosting/{accountId}/logs/error-log Read website error log POST /api/v2/shared-hosting/{accountId}/wordpress-plugins/{slug}/actions/toggle Enable or disable WordPress plugin const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "not_found") {
// Handle: No error log found
console.error(problem.detail);
}
}