- ✅ Accept an inbound invoice
📄 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
🔍 List invoices with filtering
📄 Submit invoice file (Factur-X, UBL, CII)
✅ Validate invoice file (Factur-X, UBL, CII)
🚫 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
✅ Accept an inbound invoi...
Accept an inbound invoice, in full or in part.
Supplying details.partial_approval approves only part of the invoice: it reports the invoice as partially approved, and states the motive and the amounts approved and not approved. An amount must state the VAT rate it applies to, unless the invoice charges a single one.
Sécurité
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}/accept
- Production serverhttps://pa.seqino.com/api/invoicing/invoices/{invoice_id}/accept
curl -i -X POST \
'https://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}/accept' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'X-PDP-Client-Id: client_abc123' \
-d '{
"details": {
"comment": "string",
"partial_approval": {
"reason_code": "ART_ERR",
"reason_text": "string",
"amounts": [
{
"type": "MAP",
"amount": 0,
"tax_rate": 0
}
]
}
}
}'Response
{ "invoice_id": "string", "status": "string", "success": true }