Added
Customer & Supplier Invoices — E-invoicing flow field and flow_id filter
June 22nd, 2026 by Integrations Squad
We can now retrieve and filter invoices by their associated e-invoicing flow, with the introduction of the e_invoicing.flow field and the flow_id filter.
New field: e_invoicing.flow
e_invoicing.flowFor invoices processed through e-invoicing, the e_invoicing object now includes a flow field referencing the AFNOR/PDP flow associated with the invoice. flow.id is a UUID identifying the associated flow.
"e_invoicing": {
"status": "accepted",
"reason": null,
"flow": {
"id": "01960000-0000-0000-0000-000000000000"
}
}flow is null when no flow is associated with the invoice.
New filter: flow_id
flow_idYou can now filter invoices by their associated flow UUID using the flow_id filter field on list endpoints:
GET /customer_invoices?filter=[{"field":"flow_id","operator":"eq","value":"01960000-0000-0000-0000-000000000000"}]
GET /supplier_invoices?filter=[{"field":"flow_id","operator":"eq","value":"01960000-0000-0000-0000-000000000000"}]
Supported operators: eq, not_eq, in, not_in.
Affected endpoints
Customer invoices
GET /customer_invoicesGET /customer_invoices/:idPOST /customer_invoicesPOST /customer_invoices/create_from_quotePUT /customer_invoices/:idPUT /customer_invoices/:id/finalizePOST /customer_invoices/:id/link_credit_note
Supplier invoices

