Use this call to retrieve a list of items on the order and request/sent/received levels. This method will return multiple entries for a single item if the item exists in multiple bins.
Name | Type | Description |
---|---|---|
pkTransferId | Guid | The id of the transfer. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/GetTransferItems
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.
pkTransferId=68353778-fdea-419b-a38b-de58facf3859
This is an example of the response JSON. Results will vary depending on your data.
[
{
"PkTransferItemId": "d5d97ca5-36b7-4be6-8fd9-a60e9bb8d57c",
"FkStockItemId": "5ec61564-7b7a-4b09-8c12-a2c55f4f5ae4",
"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": "b42fe13a-f223-446e-8e27-1fc8d74a390e",
"ItemNotes": [
{
"PkTransferItemNoteId": "79f39f58-fde9-44eb-b41b-c3fd8af45f1f",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.771949+00:00",
"NoteRead": true,
"FkBinId": "1c23a60f-028a-4410-8408-15ca7a19b83e",
"PkTransferItemId": "a6a19298-66d0-4d55-af77-4b999b4b19e1"
}
]
}
]