Server and URLs

All APIs endpoints are relative to the base URL https://api.auroravision.net/api/rest.
Based on the API you want to call, you will have concatenation between the base URL and the path parameters that call endpoints dedicated to specific resources and services.

For example, assuming you want to authenticate, the API will consist of the base URL https://api.auroravision.net/api/rest concatenated to the endpoint expressed with the path parameter /authenticate.

It is always important to keep in mind that any API will always consist of different parameters:

  • Path: variable parts of a URL path used to point to a specific resource within a collection, they are always required;
  • Header: driving parameter for HTTP request, they are required to get a server-side response;
  • Query: can be required and optional, they are used to filter and customize the API call by chaining them with specific syntax;

Any call made through the APIs service has the X-AuroraVision-Token as its header.
To get the token, you need to use the Authentication API by entering the Aurora Vision account credentials i along with the X-AuroraVision-ApiKey as the header of the call.

It is possible to view all the APIs, with a description of the parameters, through the appropriate documentation (OpenAPIs Swagger).