- 🔍 List invoices with filtering
📄 Get complete invoice data by ID
📄 Get invoice status and file download links
📦 Download invoice as UBL 2.1 XML
📦 Download invoice as CII XML
📄 Download invoice as FacturX PDF
📄 Submit invoice file (Factur-X, UBL, CII)
✅ Validate invoice file (Factur-X, UBL, CII)
✅ Accept an inbound invoice
🚫 Refuse an inbound invoice
💸 Mark an inbound invoice as paid
💰 Mark an outbound invoice as cashed
🧾 Create a credit note for an outgoing invoice
Invoice Created
Invoice Received
Invoice Status Updated
🔍 List invoices with fil...
List invoices with status, direction, mandate, and time-based filtering options.
This endpoint allows you to query invoices using various filters to find invoices that match your criteria.
Security
APIKeyHeader
Any of:
Invoice lifecycle status.
Aligned with DGFIP e-invoicing status codes (statuts de cycle de vie):
- draft — Pre-submission state
- submitted (200) — Invoice deposited and validated by the sending PDP (mandatory)
- received (202) — Invoice received by the receiving PDP
- processed — Invoice accepted for routing
- accepted (205) — Recipient accepted the invoice
- partially_accepted (206) — Recipient approved only part of the invoice
- refused (210) — Recipient refused the invoice (mandatory)
- paid (211) — Buyer marked the invoice as paid
- rejected (213) — PDP detected an anomaly on the invoice (mandatory)
- cashed (212) — Supplier confirmed receipt of payment (mandatory)
string(InvoiceStatus)
Enum:"draft""submitted""received""processed""accepted""partially_accepted""refused""paid""rejected""cashed"
- Dev serverhttps://pdp.seqino.dev/api/invoicing/invoices
- Production serverhttps://pa.seqino.com/api/invoicing/invoices
curl -i -X GET \
'https://pdp.seqino.dev/api/invoicing/invoices?status=draft&direction=incoming&mandate_id=string&invoice_number=string&updated_after=string&updated_before=string&created_after=string&created_before=string&limit=50&offset=0' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'X-PDP-Client-Id: client_abc123'Response
{ "invoices": [ { … } ], "total_count": 0, "limit": 0, "offset": 0, "filters_applied": { "status": "string", "direction": "string", "mandate_id": "string", "invoice_number": "string", "updated_after": "2019-08-24T14:15:22Z", "updated_before": "2019-08-24T14:15:22Z", "created_after": "2019-08-24T14:15:22Z", "created_before": "2019-08-24T14:15:22Z" }, "queried_at": "string" }