- 📄 Get invoice status and file download links
📄 Get complete invoice data by ID
📦 Download invoice as UBL 2.1 XML
📦 Download invoice as CII XML
📄 Download invoice as FacturX PDF
🔍 List invoices with filtering
📄 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
📄 Get invoice status and...
Get an invoice's current status, its status details, and file download links.
Returns the invoice's lifecycle status and status details, plus download URLs for the requested format(s). If no format is specified, links for all available formats are returned.
Supported formats:
- facturx: FacturX PDF with embedded XML (French standard)
- ubl: Universal Business Language XML
- cii: Cross Industry Invoice XML
Sécurité
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}
- Production serverhttps://pa.seqino.com/api/invoicing/invoices/{invoice_id}
curl -i -X GET \
'https://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}?format=facturx' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'X-PDP-Client-Id: client_abc123'Successful Response
Response
{ "invoice_id": "string", "status": "string", "direction": "string", "invoice_number": "string", "created_at": "2019-08-24T14:15:22Z", "seller": {}, "buyer": {}, "currency_code": "string", "total_amount": 0, "available_formats": [ { … } ], "generated_at": "2019-08-24T14:15:22Z", "status_details": { "PeppolSendingFailed": "string", "NotPeppolRoutable": "string", "InvoiceSerializationFailed": "string", "InvalidInputError": "string", "reason_code": "NON_TRANSMISE", "reason_text": "string" } }