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

Quotations

Manage commercial quotations. Use action=“create” to start a draft quotation (requires lead_id). Use action=“update” to change status (draft, sent, rejected, expired). Use action=“list” or “get” to read. Use action=“delete” to remove.

Input Schema

ParameterTypeDescription
actionstringAction to perform: create, list, get, update, delete
idstringQuotation UUID (required for get, update, delete)
site_idstringSite UUID (seller site)
deal_idstringDeal UUID to attach this quotation to
lead_idstringLead UUID (required for create)
buyer_user_idstringBuyer user UUID
price_list_idstringPrice list UUID to apply
statusstringQuotation status: draft, sent, rejected, expired
valid_untilstringValid until date (ISO string)
currencystringCurrency code (e.g. USD)
notesstringNotes for the quotation
limitnumberLimit results for list
offsetnumberOffset results for list

Example

{ "action": "create", "lead_id": "YOUR_LEAD_ID", "notes": "Proposal for Q3" }
Last updated on