Use this call to add multiple items to the transfer (only works for transfers in draft/request states)
Name | Type | Description |
---|---|---|
request | AddItemsToTransferRequest | Request object with data needed |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/WarehouseTransfer/AddItemsToTransfer
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.
request={
"TransferId": "90643a81-943c-47af-808f-3aa52f35412b",
"TransferItems": [
{
"fkStockItemId": "22cc82af-953a-42ba-affa-4d2300227096",
"Quantity": 2,
"pkTransferItemId": "8b0c29cd-05f1-4a88-ad32-d704760a74bd"
}
]
}
This is an example of the response JSON. Results will vary depending on your data.
{
"TransferItems": [
{
"PkTransferItemId": "9d95df43-4e6c-406c-b70b-efdb1364374b",
"FkStockItemId": "4fed4664-3006-4fe8-9410-ceb87310ec4c",
"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": "425512da-db05-4400-8635-3960764fcd53",
"ItemNotes": [
{
"PkTransferItemNoteId": "57a30e50-208d-415d-9320-9e3c23be0b77",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7599169+00:00",
"NoteRead": true,
"FkBinId": "b3c183e7-f7a7-4b62-9cef-20fde02b1183",
"PkTransferItemId": "19a3e723-137b-482b-9e91-22c71625cbeb"
}
]
}
]
}