This is the Omnizon Platform Public REST API specification. For access and API Keys please contact your Omnizon Platform representative.
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 company's unique identifier (OIB, 11 digits).
Example: "12345678901"
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/organizations/register
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/organizations/register
- 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/organizations/register \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"companyVatNumber": "12345678901",
"companyName": "Example Ltd.",
"companyAddressStreet": "Main Street 123",
"companyAddressCity": "Zagreb",
"companyAddressPostalCode": "10000",
"companyAddressState": "Grad Zagreb",
"companyAddressCountry": "HR",
"mpsRegister": true,
"email": "info@example.com",
"companyWebsite": "https://www.example.com",
"iban": "HR1234567890123456789",
"routingAddress": "00000000000"
}'Response
application/json
{ "organizationId": "6787a98e15306d37eed688a8" }
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/organizations/findByVatNumber
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/organizations/findByVatNumber
- 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/organizations/findByVatNumber \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"vatNumber": "string"
}'Response
application/json
{ "fullName": "string", "vatNumber": "string", "localBusinessId": "string", "dunsNumber": "string", "gln": "string", "peppolId": "string", "addressContact": "string", "addressCity": "string", "addressPostalCode": "string", "addressState": "string", "addressExtraLine1": "string", "addressExtraLine2": "string", "addressExtraLine3": "string", "webAddress": "string", "organizationId": "string" }
- Mock serverhttps://omnizon-public-api.redocly.app/_mock/openapi/rest/v1/organizations/amsCheck
- U-DEV testing environmenthttps://hr.u-dev.omnizon.network/api/rest/v1/organizations/amsCheck
- 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/organizations/amsCheck \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"vatNumber": "string"
}'Response
application/json
{ "isAmsRegistered": true }