- Vendors now support custom fields. The
fieldsproperty is available when creating, updating, and retrieving vendors.
Full bill payment lifecycle management:
GET /bill-payments- List all bill paymentsPOST /bills/{id}/payments- Create a payment for a billDELETE /bill-payments/{id}- Delete a bill payment
Invoice responses now include calculated totals:
total_amount- The total invoice amount including taxestotal_tax_amount- The sum of all tax amounts on the invoice
You can now add and update external references on invoices and credit memos:
PUT /invoices/{id}- Update invoice includingexternal_referencesPUT /credit-memos/{id}- Update credit memo includingexternal_references
This allows you to link these documents to records in your external systems after creation.
- Journal entries now include the
fieldsproperty in API responses, showing any custom field values associated with the entry.
Single contract responses (GET /contracts/{id}) now include:
invoices- List of invoices associated with the contract- Invoice
statusfield showing the current invoice state
New filter and sort options for journal entries:
updated.gt- Filter journal entries updated after a specific timestampsort- Sort byupdated_atin ascending or descending order
- Added
updated.gtfilter parameter toGET /customersto retrieve customers updated after a specific timestamp
Filter entities by their last update time using the updated.gt parameter:
GET /invoices?updated.gt={timestamp}- Invoices updated after timestampGET /credit-memos?updated.gt={timestamp}- Credit memos updated after timestamp
Note: The previous updated_after parameter has been renamed to updated.gt for consistency with other filter parameters.
Subscribe to real-time event notifications for key entities:
Available Events:
customer-created,customer-updated,customer-deletedcontract-created,contract-updated,contract-deletedinvoice-created,invoice-updated,invoice-deleted,invoice-payment-updatedcredit-memo-created,credit-memo-updated,credit-memo-deleted,credit-memo-payment-updated
Webhook payloads include the full entity data and are signed for verification.
