Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
MCP ServerToolsQuotation ItemsPOST

Quotation Items

Manage lines (items) inside a quotation. Use action=“create” to add an item. Use action=“update” to change quantity/price. Use action=“delete” to remove an item. These actions automatically recalculate the quotation totals.

Input Schema

ParameterTypeDescription
actionstringAction to perform: create, list, update, delete
idstringItem UUID (required for update, delete)
quotation_idstringQuotation UUID (required for create, list)
catalog_item_idstringCatalog Item UUID
namestringName of the item (required for create)
quantitynumberQuantity (defaults to 1)
unit_pricenumberUnit price
metadatastringJSON string of metadata
limitnumberLimit results for list
offsetnumberOffset results for list

Example

{ "action": "create", "quotation_id": "YOUR_QUOTATION_ID", "catalog_item_id": "YOUR_CATALOG_ITEM_ID", "name": "Consulting Hours", "quantity": 10, "unit_price": 150 }
Last updated on