Transfer not in progress
https://developer.hostup.se/errors/transfer_not_in_progress {
"type": "https://developer.hostup.se/errors/transfer_not_in_progress",
"title": "Transfer not in progress",
"status": 409,
"detail": "There is no pending outgoing transfer to approve.",
"code": "transfer_not_in_progress",
"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 === "transfer_not_in_progress") {
// Handle: Transfer not in progress
console.error(problem.detail);
}
}