Use this call to retrieve all of the archived transfers in the system (i.e. Delivered or Deleted).
Name | Type | Description |
---|---|---|
pageNumber | Int32 | The page number (starting at 1). |
entriesPerPage | Int32 | The number of entries to be returned per page. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/GetArchivedTransfers
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
pageNumber=1&entriesPerPage=1
This is an example of the response JSON. Results will vary depending on your data.
{
"PageNumber": 1,
"EntriesPerPage": 2,
"TotalEntries": 3,
"TotalPages": 2,
"Data": [
{
"PkTransferId": "f17cdc1b-b663-400b-a1ac-4ccbbae67885",
"FromLocationId": "6920f71d-e585-4fea-b60d-8d32573791fb",
"ToLocationId": "f02fb4ea-1c1c-46bd-83ac-b2790e7d5174",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2022-08-03T16:02:31.4846783+01:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "e6773502-4c5e-4998-bd4b-829ac7915620",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "91495a8b-e99f-45ce-97dd-ff501e80f7df",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "e88ff2ba-de78-44f2-8c7d-66b1b77a3c49",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4856758+01:00",
"NoteRead": true,
"PkBinId": "81a69ce2-5a5a-4115-9974-e88facf055b9"
}
],
"BinItems": [
{
"PkTransferItemId": "b4e99f3b-83f9-4ad8-9bb4-f34ff556110a",
"FkStockItemId": "c69da421-5bc8-4e98-9867-1fb36d49c47e",
"SKU": "sample string 3",
"Barcode": "sample string 4",
"ItemTitle": "sample string 5",
"RequestedQuantity": 6,
"SentQuantity": 7,
"ReceivedQuantity": 1,
"InFromLocationQuantity": 8,
"DueFromLocationQuantity": 9,
"InToLocationQuantity": 10,
"ItemNoteCount": 11,
"BinRackNumber": "sample string 12",
"PkBinId": "1da00d39-e967-4610-8cd2-315b64fa3821",
"ItemNotes": [
{
"PkTransferItemNoteId": "bacab563-0bee-46b8-b524-859495001eca",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4856758+01:00",
"NoteRead": true,
"FkBinId": "8f6f74e9-aa90-4003-af7a-4ac1912a2ca5",
"PkTransferItemId": "46861989-6daf-4486-9f70-307a8cc64db5"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "5afb496d-c059-43ae-b2af-0c0451f47306",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4856758+01:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "784be6fb-15f5-4e7e-8be8-b9cb243046bf",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2022-08-03T16:02:31.4856758+01:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "85c87274-5a7f-4d16-9390-8285dbc9a9c5",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}