Authentication
The authentication service issues access tokens for our web services. You should register an account under https://accounts.reactivereality.com and your contact at Reactive Reality will activate it.
Access Tokens
Two different kinds of access tokens can be request from our Auth Service:
Normal access tokens for users (dashboard login)
Long lived access tokens called API keys for service clients (no expiration)
To request an API key, log in to https://accounts.reactivereality.com/ and click on the +
icon in the top right corner of the API Keys table. You can choose the name and description freely. After the creation of the key you will see the token once, please copy it at this point, because you wont be able to see it again. Please wait with creating an API key until your account has been activated by us.

To revoke an API Key, click the trash icon left to it.
All requests to the REST API need to be authenticated. Therefore, you need to add an authorization header to your call. To add a bearer token to your CURL request simple use -H "Authorization: Bearer <YOUR-API-KEY>"
.