Update quotation product
documentedUpdate a Quotation product.
PUT /Quotation/{QUOTATION_ID}/QuotationProducts/{ID}Quotesno 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/{{$QUOTATION_ID}}/QuotationProducts/{{$ID}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
-d '{"ProductId": {{$PRODUCT_ID}}, "UnitPrice": {{$UNIT_PRICE}}, "Quantity": {{$QUANTITY}}, "Discount": {{$DISCOUNT}}, "Description": "{{$DESCRIPTION}}"}'