This is the Omnizon Platform Public REST API specification. For access and API Keys please contact your Omnizon Platform representative.
- Get latest reporting status for a document
Send UBL 2.1 invoice
Get Invoice Internal Status
Get External Invoice Status
Get Invoices By Internal Status
Get Invoices By External Status
Get Document
Acknowledge Invoice
Reject Invoice
Mark Invoice as Paid
Cancel Invoice
Get Document from Archive
Archive Document
Get Documents By Number
Get Inbox Documents
Get Document Statuses
Get Outbox Document Statuses
Get Inbox Document Statuses
Get all fiscalization statuses for a document
Get latest fiscalization status for a document
Get all reporting statuses for a document
Get latest reporting stat...
Omnizon Public REST API (v1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://omnizon-public-api.redocly.app/_mock/openapi
U-DEV testing environment
https://{tenant}.u-dev.omnizon.network/api
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/getAllReportingStatuses
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/documents/getAllReportingStatuses
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/getAllReportingStatuses \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"documentId": "64a1b2c3d4e5f6789012345a"
}'Reporting statuses retrieved successfully.
Timestamp when the reporting was attempted
Example: "2024-01-15T10:30:00Z"
Type of fiscalization process
Enum"FISCALIZATION""FISCALIZATION_REJECTION_REPORT""FISCALIZATION_PAYMENT_REPORT""FISCALIZATION_NOT_DELIVERED_REPORT"
Example: "FISCALIZATION"
Response
application/json
[ { "successful": true, "errorMessage": "Invalid reporting format", "errorCode": "FORMAT_ERROR", "shouldRetry": false, "timestamp": "2024-01-15T10:30:00Z", "reportingRequestId": "RPT-2024-001234", "reportingResponseId": "REF-12345678-2024", "fiscalizationType": "FISCALIZATION" } ]
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/getLatestReportingStatus
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/documents/getLatestReportingStatus
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/getLatestReportingStatus \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"documentId": "64a1b2c3d4e5f6789012345a"
}'Response
application/json
{ "successful": true, "errorMessage": "Invalid reporting format", "errorCode": "FORMAT_ERROR", "shouldRetry": false, "timestamp": "2024-01-15T10:30:00Z", "reportingRequestId": "RPT-2024-001234", "reportingResponseId": "REF-12345678-2024", "fiscalizationType": "FISCALIZATION" }