Use this call to search for archived transfers which were created 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.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/GetArchivedTransfersBetweenDates
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-08-03T16:02:28.2409007+01:00&end=2022-08-03T16:02:28.2409007+01: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": "38075370-d5a5-4aac-899b-3e774912e6bd",
"FromLocationId": "4afc99a9-123e-42dd-ab5a-e0ba78b9c673",
"ToLocationId": "bced6267-49b0-418f-b63f-feced5d31dc8",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2022-08-03T16:02:31.4976435+01:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "0b3e94cf-5981-4065-b03a-dc25c18e571b",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "0bbd6dc9-8b72-449c-bb20-d7ebc83557eb",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "69347824-237f-4ba4-9fe3-8e242cbf60a6",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4976435+01:00",
"NoteRead": true,
"PkBinId": "c784b44e-285a-44c5-9cc1-b441169415db"
}
],
"BinItems": [
{
"PkTransferItemId": "519c15e1-2590-490f-88d4-c43e413b4f63",
"FkStockItemId": "d9f7b790-a405-4272-83ae-a0b174fd350c",
"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": "5cd6e933-bf16-41e9-9f56-1cc4712e6d77",
"ItemNotes": [
{
"PkTransferItemNoteId": "e1111a1b-e74e-4755-9ed5-d9388dfdc021",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4976435+01:00",
"NoteRead": true,
"FkBinId": "3aea5c28-168c-40db-aa17-c7503a40c843",
"PkTransferItemId": "6f8b7b96-d620-4b42-9122-0f9eaa53d451"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "8b6f6c58-f4e0-47e7-9d23-926065ee0c65",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4976435+01:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "98e69296-cfd9-4b67-89f1-cf51a8a59118",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2022-08-03T16:02:31.4976435+01:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "2166cfaf-3ee4-4344-9482-c042f44f6887",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}