Does Qonto support AFNOR XP Z12-013?
Qonto’s API does not follow the AFNOR XP Z12-013 standard. However, it covers the same e-invoicing use cases. The only difference is that it is Qonto-specific rather than following the AFNOR interoperability standard.| What you want to do | Qonto API |
|---|---|
| Send invoices to clients through the e-invoicing network | POST /v2/client_invoices/{id}/send_by_einvoice |
| Receive invoices from suppliers | GET /v2/supplier_invoices |
| Upload invoices generated in your own tool (Factur-X, UBL, CII) | POST /v2/client_invoices |
| Track invoice lifecycle and status | GET /v2/client_invoices/{id} |
| Generate Factur-X invoices directly on Qonto | Factur-X guide |
| Check your e-invoicing settings | GET /v2/einvoicing/settings |
I generate Factur-X invoices in my own tool: how do I send them through Qonto?
If you already produce structured invoices (Factur-X, UBL 2.1, or CII) and want Qonto to handle transmission through the e-invoicing network:- Upload the invoice via
POST /v2/client_invoicesto register it and obtain aclient_invoice_id - Send it via e-invoicing via
POST /v2/client_invoices/{id}/send_by_einvoice. Qonto routes it to the recipient’s platform - Track delivery by polling
GET /v2/client_invoices/{id}for status updates
Where to go next
Generate a Factur-X invoice
Full walkthrough with Python and Node.js code examples.
PA as a Service
Use Qonto as a transmission platform for your own invoicing tool.
Factur-X reference
How Factur-X PDF generation works on Qonto.