list-invoices
dci list-invoices [flags]
Returns a list of all the current and historical invoices for your organization. Invoices are returned in reverse chronological order by default.
CLI default view
dci list-invoices presents a curated table by default:
- Columns:
invoice(fromid; a clickable link to the invoice in the DoiT console in interactive terminals),platform,issued(frominvoiceDate),due(fromdueDate; blank when the invoice carries no due date, e.g. credit memos),totalandbalance(with the invoice's currency symbol), andstatus. --output jsonand explicit-C/--fieldsselections return the raw fields documented below.
Examples
# Current and historical invoices, newest first.
dci list-invoices
# Invoices issued on or after 1 August 2026 00:00 UTC (epoch milliseconds).
dci list-invoices --min-creation-time 1785542400000
# Invoices still open, searched client-side across every page.
dci list-invoices --search OPEN
# Every page as JSON, for scripts.
dci list-invoices --all --output json