Jovix Developer Portal

reference information for extending Jovix functionality


Check out the new developer portal!

Already an expert, or just ready to jump into the details? This link’s for you…

Jovix REST API Reference

Not on the latest version of Jovix? Find specifications for previous versions of Jovix at the bottom of this page.


Getting started using the Jovix REST API

The Jovix REST API is available on any paid instance of Jovix, starting with version 2017.12, and makes it possible to access and modify data within that instance. Please note that older instances may not have access to the latest features in the API. The documentation, however, always represents the latest that is available.

The fastest way to get started with the API is to try it out with our sample Postman Collection:

Run in Postman


Example calls using cURL

Make a request to get a JSON Web Token (JWT) using basic authentication…

curl -X GET \
  https://<server_address>/api/v1/token \
  -H 'authorization: Basic Z3JvZGdlcnM6Z3JvZGdlcnM='

Make a request to get materials using the accessToken JWT received from the first call…

curl -X GET \
  'https://<server_address>/api/v1/materials?filter=name=^PIPE-17' \
  -H 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.TJVA95OrM7E2cBab30RMHrHDcEfxjoYZgeFONFh7HgQ'
API specification for previous versions of Jovix