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": "0aa9e564-b4ad-4064-90c7-e103ea3faef6",
"FromLocationId": "62754848-b442-4d5c-a5fd-05fd0e7d06d4",
"ToLocationId": "5fa61f66-0a07-47ea-8cef-4368f7c75890",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2023-01-10T13:49:49.7899766+00:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "c34511fa-8f7b-487a-8c81-ba5d5a2f816e",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "fc52992a-9f79-4afa-9a43-bb7bc8ce6304",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "3be8d0fe-b259-4342-b33e-45f6126552a8",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7899766+00:00",
"NoteRead": true,
"PkBinId": "bd6d9bd6-07a7-4f1d-881b-715d5757f995"
}
],
"BinItems": [
{
"PkTransferItemId": "8e77c6ba-3b6a-444d-93f9-8830e4f52066",
"FkStockItemId": "89fc069d-32fc-40bf-9112-d65713f87d63",
"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": "524a80ee-f638-4875-986c-00c767970b46",
"ItemNotes": [
{
"PkTransferItemNoteId": "3db8675b-571f-48b9-93db-99daf03491c4",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7899766+00:00",
"NoteRead": true,
"FkBinId": "1c2ddcfe-6ab9-4937-81b0-e20ec7e22fad",
"PkTransferItemId": "1c0a81c7-0cf9-41fa-8de4-9845c2434b0c"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "d877c873-ac63-4e7d-a827-4ee1b856d582",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7899766+00:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "c2668f79-37c2-4fe1-add5-6088c87663f2",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2023-01-10T13:49:49.7899766+00:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "ffbb8f07-9303-46bd-b9f5-e3f30849903b",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}