Skip to content

Get Transfer Order by ID

GET/web/v1/transfer/query/orders/{bizId} JWT

Retrieves a single transfer order by its business ID. This endpoint enforces workspace-level scoping.

Authentication

Requires a valid JWT token and Turnstile verification.

Request Parameters

NameTypeRequiredInDescription
bizIdstringRequiredpathTransfer order business ID (path parameter)

Success Response

Not Found 404
{
  "code": "4040",
  "message": "Transfer order not found",
  "data": null
}

Error Responses

HTTP StatusCodeDescription
4014010Unauthorized
4044040Transfer order not found

Notes

  • Only returns orders belonging to the current workspace context.
  • Returns 404 if the order does not exist or belongs to a different workspace.

SlaunchX Internal Documentation