Use this call to search for archived transfers which were archived between two dates.
Name | Type | Description |
---|---|---|
start | DateTime | The start date. |
end | DateTime | The end date. |
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.
POST https://eu-ext.linnworks.net/api/WarehouseTransfer/GetArchivedTransfersBetweenArchivedDates
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.
start=2022-03-09T13:04:02.2100607+00:00&end=2022-03-09T13:04:02.2100607+00:00&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": "e46b3582-325f-4a61-ae33-e213c50fbaa1",
"FromLocationId": "8d69f33b-fa7b-4c6e-acac-b3cf5cc87e84",
"ToLocationId": "407a10fc-c135-4fc1-92ed-1b1315a7603b",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2022-03-09T13:04:11.8374724+00:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "3e17b969-df24-489c-83e5-dee247b3f2c1",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "ac888f57-f2a7-4e84-81e3-c759aec58b2f",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "fdfd8bf2-b6c2-4662-8796-919a8cb85a1d",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-03-09T13:04:11.8374724+00:00",
"NoteRead": true,
"PkBinId": "3ad71895-069a-4489-a3bf-6bb722a06386"
}
],
"BinItems": [
{
"PkTransferItemId": "34d790bc-c194-461f-9982-f8d15c63a428",
"FkStockItemId": "887e68d9-96a8-44de-91a5-83c4a9892982",
"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": "d9e4b78e-9c73-4ba3-9efe-9eb188ce682e",
"ItemNotes": [
{
"PkTransferItemNoteId": "58fa5991-79d1-4b1e-b5c4-c54ed4bfa276",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-03-09T13:04:11.8374724+00:00",
"NoteRead": true,
"FkBinId": "ab894cdd-2543-4132-ba47-7f4e70e7346c",
"PkTransferItemId": "1e97ca00-cba5-49a6-b252-efd97598905e"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "46cf9cba-14bf-41a6-bc51-dfb124720bcb",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-03-09T13:04:11.8374724+00:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "0ed71bb1-4267-4f8f-98ff-9cd4b2c0cd7c",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2022-03-09T13:04:11.8374724+00:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "be022c00-f614-464b-959e-c8e51639ea4d",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}