List all quotes
GET/accounting/{connection_id}/quote
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
contact_idstring
The contact ID to filter by (reference to AccountingContact)
org_idstring
The org ID to filter by (reference to AccountingOrganization)
project_idstring
The project ID to filter by (reference to TaskProject)
status enum
start_gtestring
The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
end_ltstring
The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
AccountingQuotearray
idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
quote_numberstring
External identifier for this quote (Xero QuoteNumber, QBO DocNumber, NetSuite tranId)
referencestring
customer-side reference / PO number
titlestring
short title (Xero Title, max 100)
summarystring
longer summary (Xero Summary, max 3000)
payment_terms enum
unified payment terms enum, as on accounting_invoice / accounting_bill
customer_messagestring
customer-visible message
memostring
internal note, not customer-visible
contact_idstring
(reference to AccountingContact)
issued_atdate
Xero Date, QBO TxnDate (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
expires_atdate
Xero ExpiryDate, QBO ExpirationDate (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sent_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
accepted_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
declined_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status enum
where EXPIRED is derived (expires_at < now), the source status is preserved in raw
currencystring
currency_ratenumber
exchange rate to the organization's base currency
sub_total_amountnumber
tax_amountnumber
discount_amountnumber
total_amountnumber
tax_mode enum
Valid values:
"INCLUSIVE"
"EXCLUSIVE"
"NONE"
INCLUSIVE / EXCLUSIVE / NONE; maps Xero LineAmountTypes (a boolean cannot represent NoTax)
invoice_idstring
populated once the quote is converted to an invoice; left null when the source cannot supply it (reference to AccountingInvoice)
project_idstring
points to an AccountingProject (accounting costing project) (reference to TaskProject)
group_idstring
points to a HRIS Group (reference to HrisGroup)
category_idsstring array
tracking categories / classes (AccountingCategory dimensions)
urlstring
public online-quote link where exposed
organization_idstring
const options = {
method: 'GET',
url: 'https://api.unified.to/accounting/5de520f96e439b002043d8dc/quote',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-08-08T06:39:41.042Z',
sort: 'updated_at',
order: 'asc',
query: '',
contact_id: '',
org_id: '',
project_id: '',
status: '',
start_gte: '',
end_lt: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know