For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add a financial document processing engine

Voyzu includes a number of Financial Document Processing endpoints in the built-in API Reference. Developing a new financial document processing engine should follow the established pattern and conventions.

Naming conventions

The below fields should be named the same across financial documents

// financial document type. E..g AR_INVOICE, AP_BILL etc
document_type
// Voyzu company code
company_code
// Agreed unique document identifier. E..g INV-1001, RECEIPT-20261211 etc
document_id
// Date to enter into the Company Ledger
posting_date
// Optional. Caller document reference / memo.
memo

Use document-specific event date names

For example:

AR_INVOICE      invoice_date
AR_RECEIPT      payment_date
AP_BILL         bill_date
AP_PAYMENT      payment_date
AR_REFUND       refund_date
WRITE_OFF       write_off_date

Use document-specific amount field names

For example

Last updated