- 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.
Manage sales tax on invoices and credit memos:
POST /invoices/{id}/taxes- Add sales tax to an invoicePUT /invoices/{id}/taxes- Update sales tax on an invoicePOST /invoices/{id}/calculate-tax- Calculate tax for an invoicePOST /credit-memos/{id}/taxes- Add sales tax to a credit memoPUT /credit-memos/{id}/taxes- Update sales tax on a credit memo
PUT /invoices/{id}/sent- Update the sent status of an invoice to track whether it has been delivered to the customer
- Added
sortparameter toGET /customersto sort byupdated_atin ascending or descending order
GET /payments- List all payments across all invoices with pagination support
A new contract type for revenue recognition without billing:
- Create contracts with
type: REVENUE_RECOGNITION_ONLYfor scenarios where invoicing is handled externally - Include invoice schedules to map expected revenue to specific invoices
- Supports amendments with the same flexibility as standard contracts
This is useful for migrating historical contracts or integrating with external billing systems.
Retrieve custom field definitions configured for your organization:
GET /fields- List all custom fields and their allowed values
- Added
customer_idfilter parameter toGET /invoicesto retrieve invoices for a specific customer
