Volume not found
https://developer.hostup.se/errors/volume_not_found {
"type": "https://developer.hostup.se/errors/volume_not_found",
"title": "Volume not found",
"status": 404,
"detail": "The requested volume could not be found.",
"code": "volume_not_found",
"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 === "volume_not_found") {
// Handle: Volume not found
console.error(problem.detail);
}
}