Returns a paginated list of accounts payable invoices for one organization. Access is role-aware: admins can see all AP invoices, and non-admin users only see invoices assigned to them.
view=list to receive a lightweight payload optimized for table rendering. The slim response returns only the fields the table needs per row:
uid, status, invoice_number, issue_date, due_date, currency, has_comments, stamp_number, received_date, document_type, vendor_nit, vendor_name, amount_due, registration_number, approved_by, registered_by, approval_date, registration_date.
Heavy fields like parties, integrations, invoice_notes, line_items, and comments are omitted. The modal already fetches full invoice data via the action logs endpoint on click, so the list does not need to carry that weight.
When view is omitted, the full response shape is returned (unchanged for backwards compatibility).
status for workflow state filtering.vendor_name, vendor_nit, invoice_number, and stamp_number for field-specific searches.keyword for broad text search.include_comments=true to include invoice comments on each item (ignored when view=list).approved_by and registered_by to filter by the user who approved or registered the invoice.approval_date_from / approval_date_to and registration_date_from / registration_date_to for date-range filters on when the invoice was approved or registered.responsible to filter by the user responsible for the next action.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Organization UID
x >= 11 <= x <= 100Response view mode. list returns a slim payload with only the fields the table renders (skips parties, integrations, invoice_notes, line_items, and comments). When omitted the full response shape is returned.
list Sort field: due_date, issue_date, status, invoice_number, document_type, stamp_number, vendor_name, vendor_nit, received_date, amount_due, approved_by, approval_date, registered_by, registration_date, registration_number, has_comments.
asc, desc Comma-separated AP invoice statuses.
Include comment objects on each invoice item.
Filter by whether invoices have comments.
Keyword search across AP invoice fields.
Filter invoices approved on or after this date (ISO format).
Filter invoices approved on or before this date (ISO format).
Filter invoices registered on or after this date (ISO format).
Filter invoices registered on or before this date (ISO format).
Filter by the user ID who approved the invoice.
Filter by the user ID who registered the invoice.
Filter by the user ID responsible for the next action on the invoice.