Add Inventory
logiwa_add_inventoryIncrease on-hand inventory quantity for an existing Logiwa record. Provide inventory UUID, quantity to add, and optionally a note and adjustment reason.
Instructions
Increases the on-hand quantity of an existing inventory record by quantity.
Identify the record with 'inventoryIdentifier' (UUID) from logiwa_list_inventory.
Args:
inventoryIdentifier (string, required): UUID of the inventory record
quantity (number, required): quantity to add
note (string): optional note
adjustmentReasonName (string): optional reason (must match a configured reason)
Returns: the operation result from Logiwa.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | Optional note recorded with the transaction. | |
| quantity | Yes | Quantity to add. | |
| additional_fields | No | Escape hatch for any extra Logiwa request-body fields not exposed as typed parameters above. Keys must match the Logiwa API's camelCase field names; merged verbatim into the request body. | |
| inventoryIdentifier | Yes | Inventory record UUID (from logiwa_list_inventory). | |
| adjustmentReasonName | No | Optional adjustment reason name. |