Create quotation
documentedCreate a new Quotation.
POST /QuotationQuotesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.na1.insightly.com/v3.1/Quotation" \
-X POST \
-H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"NAME": "{{$title}}", "OPPORTUNITY_ID": {{$opportunity_id}}, "PRICE_BOOK_ID": {{$price_book_id}}, "DESCRIPTION": "{{$description}}", "CURRENCY": "{{$currency}}"}'