Overview
The Quotations API allows you to manage sales quotations (also known as estimates or proformas). Quotations can be converted to invoices once approved by the customer.Quotation Object
The quotation object structure is similar to invoices:Unique identifier for the quotation
ID of the workspace this quotation belongs to
ID of the customer contact
ID of the document subtype
Quotation number (e.g., “QT-0001”)
Date the quotation was issued
Expiration date for this quotation
Quotation status:
draft, sent, approved, rejected, converted, cancelledSubtotal before taxes and discounts
Total tax amount
Total discount amount
Final total amount
Additional notes or terms
Array of quotation line items
List Quotations
Retrieve a paginated list of quotations.Query Parameters
Page number for pagination
Number of items per page
Filter by status:
draft, sent, approved, converted, cancelledFilter by customer contact ID
Sort field (prefix with
- for descending)Response
Example
Get Quotation
Retrieve a specific quotation by ID.Path Parameters
Quotation ID
Response
Create Quotation
Create a new quotation.Request Body
Customer contact ID
Document subtype ID
Quotation issue date (YYYY-MM-DD)
Expiration date (YYYY-MM-DD)
Additional notes or terms
Array of quotation line items (same structure as invoice items)
Product ID
Quantity
Unit price
Discount amount
Array of tax IDs
Response
Example
Quotations are created with status
draft by default. They do not affect inventory until converted to invoices.Update Quotation
Update an existing quotation.Path Parameters
Quotation ID
Request Body
Same as Create Quotation. All fields are optional.Response
Delete Quotation
Delete a quotation.Path Parameters
Quotation ID
Response
Convert to Invoice
Convert an approved quotation to an invoice. This creates a new invoice with the same items and marks the quotation asconverted.
Path Parameters
Quotation ID
Response
Example
Download Quotation PDF
Download quotation as PDF document.Path Parameters
Quotation ID
Response
Returns a PDF file withContent-Type: application/pdf.
Example
Bulk PDF Download
Download multiple quotations as a single ZIP file containing PDFs.Request Body
Array of quotation IDs to download
Example
Related Resources
Invoices
Convert quotations to invoices
Contacts
Manage customer information
Products
Product catalog for quotations