- 🚫 Refuse 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)
✅ Accept 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
🚫 Refuse an inbound invo...
Refuse an inbound invoice.
The PPF requires a refusal to report a reason code (G7.08) and a comment (G7.25), so an omitted details.reason_code defaults to "CONTACT_ACHTR" and an omitted details.comment to "TRANSAC_INC".
Security
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}/refuse
- Production serverhttps://pa.seqino.com/api/invoicing/invoices/{invoice_id}/refuse
curl -i -X POST \
'https://pdp.seqino.dev/api/invoicing/invoices/{invoice_id}/refuse' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'X-PDP-Client-Id: client_abc123' \
-d '{
"details": {
"reason_code": "AUT_MOTIF_ERR_VALIDEUR",
"reason_text": "string",
"comment": "string"
}
}'Response
{ "invoice_id": "string", "status": "string", "success": true }