Skip to content

Update Inventory Record

PUT /api/inventory/{id}

Required privilege: Inventory / Edit Content-Type: application/json CSRF header required: X-XSRF-TOKEN


Path Parameters

Parameter Type Required Description
id integer Yes Internal inventory record identifier

Request Body

Same schema as Create Inventory Record. Provide any fields to update.

{
  "Inventory Quantity": 920,
  "Inventory Date": "2024-03-15"
}

Response

HTTP/1.1 200 OK

{
  "message": "Inventory record updated."
}