Accessing REST API
REST API is available at the addresses specified in the Iotellect Server configuration for REST API.
REST API has the following parameters:
- Token Expiration Period determines the duration for which the token is valid.
- Secret Key is meant to be exactly that; it’s used to sign your access tokens.
- Generate Secret Key checkbox activates generation of a new Server Key.
- Allowed Request Origins (CORS) - comma-separated list of origins (host, port, schema) from which the requests are allowed for Iotellect Server server. The special value
*
denotes any origin. The server will return the value of this parameter inAccess-Control-Allow-Origin
response header on CORS requests. If not set, the server will decline all requests from non-local origins.
![]() | REST API tokens become invalid after a server reboot. To allow tokens to stay valid after a server reboot, disable Generate Secret Key and make sure the Secret Key field is filled. With these settings old tokens will stay valid after the server reboot. However, you must log into the server at least once after reboot, using the same username which was used to generate the old tokens. |
REST API works over either HTTP or HTTPS connection and uses authorization. By default, you can access REST API on the following localhost addresses and ports:
https://localhost:8443/rest/{request}
for HTTPS connectionshttp://localhost:8080/rest/{request}
for HTTP connections
Above, substitute {request}
with a request, as described in the REST API Reference.
![]() | You must authenticate to get the results of this request. |
![]() | Example: If Iotellect Server is running on the localhost, it has a virtual device, and all settings are set to their defaults, you can execute a REST API request using the following URL:
This request gets information about the |
Was this page helpful?