Get Transfer Order by ID (Admin)
GET
/web/v1/admin/transfer/query/orders/{bizId} JWTRetrieves a single transfer order by its business ID. This is the admin view that does not enforce 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
- This endpoint provides an admin-level view across all workspaces.
- For workspace-scoped queries, use the non-admin endpoint.