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.
GET | 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=2023-01-10T13:49:45.5465926+00:00&end=2023-01-10T13:49:45.5465926+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": "d001f019-f399-471d-8092-cd03146edabf",
"FromLocationId": "a6bb2235-4657-43df-b3b0-810e46082f3f",
"ToLocationId": "087fd41e-9ada-47fc-a234-690ce6fe825d",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2023-01-10T13:49:49.8042592+00:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "75b3809d-7bc2-422b-bfde-9a33c64b1fbb",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "43a201f4-4188-470a-8a8b-c493a40f4c02",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "2434eb48-88cb-4575-81b4-d5f342c8d0e4",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.8042592+00:00",
"NoteRead": true,
"PkBinId": "7c454072-59b5-4a8e-9e26-5e42ee50f728"
}
],
"BinItems": [
{
"PkTransferItemId": "d0a876c3-bc84-40bb-85c8-8e22dcefcd70",
"FkStockItemId": "fcb36b73-e2ae-4c4e-9562-fc8d45e6a4a5",
"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": "d571d029-c172-4ba2-9543-560828da3b69",
"ItemNotes": [
{
"PkTransferItemNoteId": "ad3edc19-8cab-40d2-8531-84085ac4819b",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.8042592+00:00",
"NoteRead": true,
"FkBinId": "d50f3c1a-38ec-4b7c-952b-7d160cf32c60",
"PkTransferItemId": "27eb3b4e-3062-443b-b1b0-c028750d20c2"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "99328d95-b018-4982-8d0f-fb30dbb7af7a",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.8042592+00:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "81145053-a34c-44a2-929f-2ec7a1d05819",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2023-01-10T13:49:49.8042592+00:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "8773f83b-06c7-4be7-811a-a2fef7f0e3b4",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}