Filter accounts by their last update time using the updated.gt parameter:
GET /accounts?updated.gt={timestamp}- Accounts updated after timestamp
This allows you to efficiently synchronize account data by fetching only recently modified accounts.
Filter accounts by their last update time using the updated.gt parameter:
GET /accounts?updated.gt={timestamp} - Accounts updated after timestampThis allows you to efficiently synchronize account data by fetching only recently modified accounts.
Accounts now include an updated_at field in API responses.
This field contains a timestamp of when the account was last modified.
This aligns accounts with other entities (Customer, Invoice, Payment, Credit Memo, Journal Entry)
that already include updated_at.
A new endpoint to retrieve a balance sheet report as of a specified date:
GET /reports/balance-sheet - Returns a balance sheet report with assets, liabilities, and equity sectionsSupports optional subsidiary_id and breakdown_by parameters.
A new endpoint to retrieve a trial balance report for a specified date range:
GET /reports/trial-balance - Returns account balances including beginning balance, debits, credits, and ending balance for each accountSupports optional subsidiary_id parameter to filter results by subsidiary.
Filter accounts payable entities by their last update time using the updated.gt parameter:
GET /vendors?updated.gt={timestamp} - Vendors updated after timestampGET /bills?updated.gt={timestamp} - Bills updated after timestampGET /charges?updated.gt={timestamp} - Charges updated after timestampGET /reimbursements?updated.gt={timestamp} - Reimbursements updated after timestampJournal entries now support exchange rates for multi-currency scenarios:
exchange_rate parameter when creating journal entriesContracts now support exchange rates for multi-currency scenarios:
exchange_rate parameter when creating contractsInvoices now support exchange rates for multi-currency scenarios:
exchange_rate field to invoice responsesexchange_rate parameter when creating invoicesWhen provided, the specified exchange rate will be used instead of the default FX rates.
Credit memos now support exchange rates for multi-currency scenarios:
exchange_rate field to credit memo responsesexchange_rate parameter when creating credit memosThis allows you to specify the exchange rate when the credit memo currency differs from the subsidiary's base currency.
Bills, charges, and reimbursements now include an updated_at field in API responses.
This field contains a timestamp of when the entity was last modified.