InventoryOrders

Update an Inventory Order Item

This endpoint updates an item for the given inventory order.

put/inventory/orders/{orderId}/items/{orderItemId}

Request body

quantityinteger

The quantity of the inventory product being ordered.

unit_priceinteger

The unit price of the inventory product in the lowest denomination for the product's currency.

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.