InventoryProducts

Update an Inventory Product Supplier

This endpoint updates the details of a supplier for an inventory product.

put/inventory/products/{productId}/supplier

Request body

order_quantityinteger nullable required

The default quantity of the inventory product to be ordered from this supplier.

unit_priceinteger required

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

Example request

{
  "order_quantity": 10,
  "unit_price": 200
}

Response

The inventory product supplier was successfully retrieved

Example response

{
  "data": {
    "product_name": "Blissful Body Butter",
    "supplier_name": "Elemis",
    "order_quantity": 10,
    "unit_price": 200,
    "currency": "gbp"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.