/transfer-orders
List transfer orders
Returns a paginated list of stock transfers, sorted by orderNumber. ?modifiedSince= returns both created and modified transfers, so it can be used for delta sync; deletions are reported by GET /preview/deletions.
Frågeparametrar
| Fält | Typ | Beskrivning |
|---|---|---|
search
|
string | Matches the order number, case-insensitively and on partial words. |
status
|
enum |
Filters on how far the transfer has got.
Draft
Released
Picking
ReadyToShip
InTransit
PartiallyReceived
Received
Cancelled
|
fromWarehouseCode
|
string | Returns only the transfers leaving this warehouse. |
toWarehouseCode
|
string | Returns only the transfers arriving at this warehouse. |
modifiedSince
|
string(date-time) | Returns only records created or changed at or after this instant (ISO 8601 UTC datetime). A change anywhere inside the record counts, including on its lines. |
page
|
integer | Page to return, 1-based. Default 1. |
pageSize
|
integer | Number of records per page. Default 50, max 200. |
Svar
PagedResult_PublicTransferOrderResponse
Paginerat svar: raderna nedan ligger i items[], omgivna av totalCount, page, pageSize, totalPages, hasPreviousPage och hasNextPage. Paginerad
| Fält | Typ | Beskrivning |
|---|---|---|
createdDate
|
string(date-time) | UTC timestamp when the transfer was created. |
fromWarehouseCode
|
string · nullable | Code of the warehouse the stock leaves. |
lines
|
TransferOrderLine[] · nullable | The transfer's lines. |
links
|
Links | Hypermedia links for a public API resource. Exposed as a computed `links` property on the public response DTOs so that create and read responses carry the same self-reference — the canonical URL is derived from the business key already present on the DTO and can never drift from the route it points at. |
modifiedDate
|
string(date-time) · nullable | UTC timestamp when the transfer was last modified. Null if never modified. |
notes
|
string · nullable | Free-text notes. Null if not set. |
orderNumber
|
string · nullable | Unique transfer order number. |
receivedDate
|
string(date-time) · nullable | UTC timestamp when the transfer was received. Null until received. |
requestedDate
|
string(date) · nullable | Requested arrival date (ISO 8601 date). Null if not set. |
shippedDate
|
string(date-time) · nullable | UTC timestamp when the transfer was shipped. Null until shipped. |
shippingMethodName
|
string · nullable | Name of the shipping method / carrier. Null if not set. |
status
|
enum |
Status of a stock transfer between warehouses.
Draft
Released
Picking
ReadyToShip
InTransit
PartiallyReceived
Received
Cancelled
|
toWarehouseCode
|
string · nullable | Code of the warehouse the stock arrives at. |
ProblemDetails
?status= got a value outside its list.
| Fält | Typ |
|---|---|
detail
|
string · nullable |
instance
|
string · nullable |
status
|
integer · nullable |
title
|
string · nullable |
type
|
string · nullable |
Standardfel:
401
403
Felhantering
Exempel
curl "https://api.erp.fluit.cloud/preview/transfer-orders" \
-H "X-Api-Key: fluit_live_sk_..."
{
"hasNextPage": true,
"hasPreviousPage": true,
"items": [
{
"createdDate": "2026-06-11T09:24:13.418",
"fromWarehouseCode": "MAIN",
"lines": [
{
"fromLocationCode": "STD",
"itemName": "Widget A",
"itemNumber": "WIDGET-A",
"lineNumber": 1,
"notes": "string",
"pickedQuantity": "10",
"receivedQuantity": "10",
"requestedQuantity": "10",
"shippedQuantity": "10",
"toLocationCode": "STD"
}
],
"links": {
"self": "string"
},
"modifiedDate": "2026-06-11T09:24:13.418",
"notes": "string",
"orderNumber": "SO-2026-1041",
"receivedDate": "2026-06-11T09:24:13.418",
"requestedDate": "2026-06-11",
"shippedDate": "2026-06-11T09:24:13.418",
"shippingMethodName": "Parcel, next day",
"status": "Draft",
"toWarehouseCode": "MAIN"
}
],
"page": 1,
"pageSize": 50,
"totalCount": 137,
"totalPages": 3
}
Bas-URL https://api.erp.fluit.cloud/preview. Svarsexemplet är genererat ur schemat: formen stämmer, värdena är påhittade.