Use this call to add an item to the transfer (only works for transfers in draft/request states)
Name | Type | Description |
---|---|---|
fkTransferId | Guid | fkTransferId |
pkStockItemId | Guid | pkStockItemId |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/AddItemToTransfer
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.
fkTransferId=f1d0e192-dee4-4ca8-a71d-c4d3f5183938&pkStockItemId=17530277-5e09-4f66-a21d-7a7f629ecd1e
This is an example of the response JSON. Results will vary depending on your data.
{
"PkTransferItemId": "5b5684a2-2d35-456f-97aa-748042f58c4c",
"FkStockItemId": "8c2845a3-51ad-4447-bba3-ee981a119958",
"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": "1dcfc0e5-8b38-46ff-9480-97c793ebd7bf",
"ItemNotes": [
{
"PkTransferItemNoteId": "1cc184be-2f1a-4905-b846-7e78a8cbc78e",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-08-03T16:02:31.4238415+01:00",
"NoteRead": true,
"FkBinId": "6b860369-3e2a-44a8-9b4a-a7a274e1a8d0",
"PkTransferItemId": "3a5f7372-05a3-4dcb-97a1-f55c578eaa82"
}
]
}