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": "1f65cd5f-3a24-4045-a55f-215fe52ccfe7",
"TransferItems": [
{
"fkStockItemId": "79f66358-aed5-4388-8f55-02744472e78c",
"Quantity": 2,
"pkTransferItemId": "b810452d-04ee-4f68-a345-2b0a36a06060"
}
]
}
This is an example of the response JSON. Results will vary depending on your data.
{
"TransferItems": [
{
"PkTransferItemId": "c1f61656-4231-44ea-b855-621c0f115a71",
"FkStockItemId": "0806b646-19b6-4c03-a794-a5d1fd16123f",
"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": "14c25844-7573-4f75-9ba5-08b2752b2a46",
"ItemNotes": [
{
"PkTransferItemNoteId": "481639ed-54cd-46e8-bc83-7be586c66e76",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2022-03-09T13:04:11.8174982+00:00",
"NoteRead": true,
"FkBinId": "4f606123-d460-4514-b622-26a78c554d55",
"PkTransferItemId": "831b3739-463b-4c8b-b69e-c8745ab4d18f"
}
]
}
]
}