Use this call to change the sent quantity of an item in the specified bin.
Name | Type | Description |
---|---|---|
pkTransferId | Guid | The id of the transfer. |
pkBinId | Guid | The id of the bin. |
pkTransferItemId | Guid | The id of the item. |
Quantity | Int32 | The new quantity. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/WarehouseTransfer/ChangeTransferItemSentQuantity
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=d66bc04e-f592-494b-b216-a4ee5ead8208&pkBinId=45012c18-f0f8-4e11-a85c-edb12b5b7e2e&pkTransferItemId=d3259f4f-5912-4051-ab42-8055f4a962e1&Quantity=1
This is an example of the response JSON. Results will vary depending on your data.
{
"PkTransferItemId": "55cfa0a7-c003-4a0c-a1c5-1608acff5e9e",
"FkStockItemId": "5aa6b53e-5af0-4da2-a656-011c8635c038",
"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": "3ab60e24-14f7-4713-a6d4-9a3d667ea4aa",
"ItemNotes": [
{
"PkTransferItemNoteId": "9a4fcd87-e3d9-4a47-836a-893b2a60a48f",
"NoteUser": "sample string 2",
"Note": "sample string 3",
"NoteDateTime": "2023-01-10T13:49:49.7749393+00:00",
"NoteRead": true,
"FkBinId": "91f0e125-b5e9-4039-80eb-674016d263c7",
"PkTransferItemId": "bb6c42fc-15c9-486a-9b56-f6b4eab30891"
}
]
}