This is the Omnizon Platform Public REST API specification. For access and API Keys please contact your Omnizon Platform representative.
- Get Document from Archive
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
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 status for a document
Get Document from Archive
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
Bodyapplication/jsonrequired
The unique identifier of the invoice document.
Example: "6787a98e15306d37eed688a8"
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/cancel
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/documents/cancel
- 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/cancel \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"documentId": "6787a98e15306d37eed688a8",
"reason": "Payment received"
}'Response
application/json
{ "statusCode": 200, "resultMessage": "Company registered successfully." }
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/getFromArchive
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/documents/getFromArchive
- 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/getFromArchive \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"documentId": "6787a98e15306d37eed688a8"
}'Bodyapplication/jsonrequired
The unique identifier of the invoice document.
Example: "6787a98e15306d37eed688a8"
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/documents/archive
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/documents/archive
- 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/archive \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"documentId": "6787a98e15306d37eed688a8",
"companyVatNumber": "HR12345678910"
}'Response
application/json
{ "documentId": "6787a98e15306d37eed688a8", "status": "archived" }