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.
memoUse 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_dateUse document-specific amount field names
For example
Last updated