- đ 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.
Sécurité
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" }