added
New v3 API endpoints for documents and attachments
June 14th, 2024
We have introduced a set of document and attachment API endpoints. You can now upload documents for bills with the v3 API. In addition, you can upload supporting attachments for vendors, customers, and invoices.
Operation | API endpoint |
---|---|
Upload customer attachment | POST /v3/attachments/customers/{customerId} |
Get list of customer attachments | GET /v3/attachments/customers/{customerId} |
Upload invoice attachment | POST /v3/attachments/invoices/{invoiceId} |
Get list of invoice attachments | GET /v3/attachments/invoices/{invoiceId} |
Upload vendor attachment | POST /v3/attachments/vendors/{vendorId} |
Get list of vendor attachments | GET /v3/attachments/vendors/{vendorId} |
Get attachment details | GET /v3/attachments/{attachmentId} |
Upload bill document | POST /v3/documents/bills/{billId} |
Get document upload status | GET /v3/documents/upload-status |
Get document details | GET /v3/documents/{documentId} |
Get list of documents | GET /v3/documents/bills/{billId} |
See Documents and attachments for more information.