transfer_not_in_progress

HTTP 409

Transfer not in progress

Type URL

https://developer.hostup.se/errors/transfer_not_in_progress

Detail message

There is no pending outgoing transfer to approve.

Example response

{
  "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"
}

Endpoints that may return this error

Handling this error

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);
  }
}