Get Transfer Order by ID
GET
/web/v1/transfer/query/orders/{bizId} JWTRetrieves 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
| Name | Type | Required | In | Description |
|---|---|---|---|---|
bizId | string | Required | path | Transfer order business ID (path parameter) |
Success Response
Not Found 404
{
"code": "4040",
"message": "Transfer order not found",
"data": null
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Unauthorized |
| 404 | 4040 | Transfer 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.