Use this call to search for archived transfers which match a specific search term.
Name | Type | Description |
---|---|---|
searchType | SearchType | The type of search. |
filter | String | The search term. |
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/GetArchivedTransfersFiltered
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.
searchType=0&filter=sample string 1&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": "4c16ec68-6f42-4e2a-965c-83591cc39a93",
"FromLocationId": "12cc27b7-ab8d-4240-8627-10e0b3c56af0",
"ToLocationId": "166cf6a5-4868-4417-85c4-ec2539e3ae40",
"FromLocation": "sample string 4",
"ToLocation": "sample string 5",
"Status": 6,
"nStatus": 6,
"ReferenceNumber": "sample string 7",
"OrderDate": "2023-01-10T13:49:49.7942927+00:00",
"NumberOfItems": 9,
"NumberOfNotes": 10,
"fkOriginalTransferId": "535acd38-1900-4e2b-8a3b-6daa71f1444c",
"OriginalTransferReference": "sample string 12",
"IsDiscrepancyTransfer": true,
"BLogicalDelete": true,
"Bins": [
{
"PkBinId": "e3c90a4f-6415-4450-8a58-a1ff7db9ac29",
"BinName": "sample string 2",
"BinReference": "sample string 3",
"BinBarcode": "sample string 4",
"BinNotes": [
{
"PkTransferBinNoteId": "4aadb106-2f57-4a49-96d7-b268dc8d8c31",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7942927+00:00",
"NoteRead": true,
"PkBinId": "3ed2c87a-90bf-4c65-b0f3-1e766704b9f5"
}
],
"BinItems": [
{
"PkTransferItemId": "1bd7ac6c-23a0-4690-acb0-f2553bde47eb",
"FkStockItemId": "42f1e842-fbcb-4ecf-b75a-95148c4006ac",
"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": "3fd25ffc-c2f1-4d5d-b4e9-d28d5b775322",
"ItemNotes": [
{
"PkTransferItemNoteId": "4acac78a-7719-442c-ae91-976fe43340d9",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7942927+00:00",
"NoteRead": true,
"FkBinId": "09517a88-8c16-4b21-8093-b1f980a662a2",
"PkTransferItemId": "700a9038-7360-4e40-a62e-20d150c3d2d6"
}
]
}
]
}
],
"Notes": [
{
"PkTransferNoteId": "dc19f620-ff69-4c24-b290-980617a3e605",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7942927+00:00",
"NoteRead": true
}
],
"AuditTrail": [
{
"PkTransferAuditId": "a0eeb297-f8f7-4334-a9a3-39ddc3d8bfe9",
"AuditType": 2,
"nAuditType": 2,
"AuditDate": "2023-01-10T13:49:49.7942927+00:00",
"AuditNote": "sample string 4"
}
],
"TransferProperties": [
{
"PkTransferPropertyId": "4099e00f-bea5-478c-8c65-90a4cd7da42a",
"TransferPropertyName": "sample string 2",
"TransferPropertyValue": "sample string 3"
}
],
"UpdateStatus": {
"Notes": true,
"Items": true,
"Properties": true,
"Information": true,
"Status": true
}
}
]
}