Update purchase order item, quantity, cost, pack size, pack quantity, in PENDING order only. Returns class that represents modified/recalculated purchase order header and modified purchase order item line
Name | Type | Description |
---|---|---|
updateItemParameter | Update_PurchaseOrderItemParameter | Edit purchase order item class |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/PurchaseOrder/Update_PurchaseOrderItem
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.
updateItemParameter={
"pkPurchaseItemId": "abd798ea-140c-460c-80a2-a604ee0fff79",
"pkPurchaseId": "3252bff8-c7bf-477d-8539-b7b46addd092",
"Quantity": 1,
"PackQuantity": 1,
"PackSize": 1,
"Cost": 1.0,
"TaxRate": 1.0
}
This is an example of the response JSON. Results will vary depending on your data.
{
"NewPurchaseOrderItem": {
"pkPurchaseItemId": "8439909f-0a6f-4d61-9622-31d1cb96ae7d",
"fkStockItemId": "50948776-5569-40e7-94b8-cf108a5a835f",
"StockItemIntId": 3,
"Quantity": 4,
"Cost": 5.0,
"Delivered": 6,
"TaxRate": 7.0,
"Tax": 8.0,
"PackQuantity": 9,
"PackSize": 10,
"SKU": "sample string 11",
"ItemTitle": "sample string 12",
"InventoryTrackingType": 13,
"IsDeleted": true,
"SortOrder": 15,
"DimHeight": 16.0,
"DimWidth": 17.0,
"BarcodeNumber": "sample string 18",
"DimDepth": 19.0,
"BoundToOpenOrdersItems": 20,
"BinRack": "sample string 21",
"QuantityBoundToOpenOrdersItems": 22,
"SupplierCode": "sample string 24",
"SupplierBarcode": "sample string 25",
"SkuGroupIds": [
1
]
},
"PurchaseOrderHeader": {
"pkPurchaseID": "6ae67797-d53f-4255-ad36-40755e2e7d8e",
"fkSupplierId": "deeed945-9410-4964-b3b9-1f8f8187eacd",
"fkLocationId": "8f4eaeb4-1e18-4d6b-8d51-a87bebb80fab",
"ExternalInvoiceNumber": "sample string 4",
"Status": 0,
"Currency": "sample string 5",
"SupplierReferenceNumber": "sample string 6",
"Locked": true,
"LineCount": 8,
"DeliveredLinesCount": 9,
"UnitAmountTaxIncludedType": 10,
"DateOfPurchase": "2022-03-09T13:04:12.0901787Z",
"DateOfDelivery": "2022-03-09T13:04:12.0901787Z",
"QuotedDeliveryDate": "2022-03-09T13:04:12.0901787Z",
"PostagePaid": 4.0,
"TotalCost": 5.0,
"taxPaid": 6.0,
"ShippingTaxRate": 7.0,
"ConversionRate": 8.0,
"ConvertedShippingCost": 9.0,
"ConvertedShippingTax": 10.0,
"ConvertedOtherCost": 11.0,
"ConvertedOtherTax": 12.0,
"ConvertedGrandTotal": 13.0
},
"BatchInventoryId": 1
}