InventoryOrders
Update an Inventory Order Item
This endpoint updates an item for the given inventory order.
put/inventory/orders/{orderId}/items/{orderItemId}
Request body
Example request
{
"quantity": 10,
"unit_price": 200
}Response
The inventory order item was successfully retrieved
Example response
{
"data": {
"quantity": 10,
"unit_price": 200,
"product_name": "Blissful Body Butter",
"line_total": 2000
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.