Friday, April 11, 2025¶
I made an XML file named “VKR-2025-33.xml”, then POSTed it to https://api.ibanity.com/einvoicing/peppol/suppliers/249e6232-5d7d-4654-8547-c8b252309698/invoices?
And the response was {‘id’: ‘7031b2c6-acfa-450b-84ab-4ac557fd6f69’, ‘type’: ‘peppolInvoice’, ‘attributes’: {‘createdAt’: ‘2025-04-11T13:34:20.548Z’, ‘status’: ‘created’, ‘technicalStatus’: ‘created’}, ‘relationships’: {‘supplier’: {‘data’: {‘id’: ‘249e6232-5d7d-4654-8547-c8b252309698’, ‘type’: ‘supplier’}}}}
And then I request GET https://api.ibanity.com/einvoicing/peppol/suppliers/249e6232-5d7d-4654-8547-c8b252309698/invoices/e62dd6dc-b094-49b9-af02-8fd630171dab to see the status of the document.
And the response is {‘data’: {‘id’: ‘e62dd6dc-b094-49b9-af02-8fd630171dab’, ‘type’: ‘peppolInvoice’, ‘attributes’: {‘createdAt’: ‘2025-04-11T12:53:53.702Z’, ‘errors’: [{‘code’: ‘invalid-format’, ‘detail’: ‘Document format is not supported’}], ‘status’: ‘invalid’, ‘technicalStatus’: ‘invalid’}, ‘relationships’: {‘supplier’: {‘data’: {‘id’: ‘249e6232-5d7d-4654-8547-c8b252309698’, ‘type’: ‘supplier’}}}}}
But AFAICS my XML file is valid according to https://ecosio.com/en/peppol-and-xml-document-validator/
What am I missing?