quotes
Retrieve all quotes for your organization
This endpoint returns a list of all quotes prepared for your organization. Use this to review pending proposals, track accepted quotes, and manage your procurement process.
Use Cases
- Review pending quotes that require approval
- Track accepted quotes and their conversion to invoices
- Monitor quote expiration dates
- Analyze pricing history and trends
Quote Status Values
draft
: Quote is being prepared (not yet sent)pending
: Quote sent and awaiting customer decisionaccepted
: Quote accepted by customerrejected
: Quote rejected by customerexpired
: Quote validity period has passed
Quote Lifecycle
- Quote created in
draft
orpending
status - Customer reviews quote details
- Customer accepts or rejects before expiration
- Accepted quotes may generate invoices
- Expired quotes cannot be accepted
Next Steps
- View full quote details: GET
/quotes/{quote_id}
- Accept a quote: POST
/quotes/{quote_id}/confirm
- Reject a quote: POST
/quotes/{quote_id}/reject
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Maximum number of items to return (default: 50)
Number of items to skip (default: 0)
Filter by created_at <= value
Filter by created_at >= value
Filter by created_at < value
Filter by created_at > value
Filter by created_at = value
Response
200
application/json
Successfully retrieved quote list
List of quotes for the authenticated organization
Returns all quotes prepared for your organization, sorted by creation date (newest first).