Authentication and Authorization

This document refers to deprecated parts of the platform and has been left intact to help customers with legacy integrations. In order to access the latest platform features and documentation, please go to https://docs.sentiance.com.

The Sentiance Backend speaks REST and GraphQL, both of which share the same authentication mechanism.

An authorization header with content Bearer <token> authenticates and authorizes your request. Based on what kind of token is supplied, the level of access is determined and could affect the functionality of various calls.

Example:

Authorization: Bearer e5c3b842284045d98ed042814f31543f

User Tokens

SDKUsers are created when the SDK initializes with an App ID and App Secret. They have a userID and are only authenticated by their token. You can retrieve this token from an initialized SDK.

API Keys

API Keys are **** a revocable, rotatable, scopeable key with which to query the API**.**

API Keys are generated on-demand with a name, scope, and expiry date and are disclosed to the creator only once. Please ensure the API Key is immediately stored somewhere secure.

API Keys should be stored securely and should never be shared outside your company. A Sentiance employee will never ask for your API Key(s). Any leaked key (even to Sentiance employees) will immediately be revoked and flagged as a security incident.

Name

A name can be given by the developer generating the key. The name is for visual purposes only and has no operational impact. Choose a name that would help you identify the key.

Scopes

Scopes allow you to specify what operations an API Key can perform. Currently, we offer 3 different scopes: user.read, _user.delete _ and user.link. We strongly suggest that you use multiple API Keys with limited scopes for different operations.

ScopeDescription

user.read

Use this scope to read user data. This scope should be used with the GraphQL and Rest APIs that are exposed by the sentiance platform to read user data.

user.delete

Use this scope to delete a user along with all historical data. This scope should be used with the user delete API.

user.link

Use this scope to link third party users with a sentiance user. This scope should be used with the user link API.

Self-Expiring

For increased security, API Keys are self-expiring. The expiry time is 1 year (recently changed from 90 days) from time of creation. After 1 year, the old API Key will stop working and a new one will have to be created. We allow up to 10 active API Keys at any given time, per app. An active key is one that hasn't been revoked or expired.

Please make sure you add the renewal of API Keys to your existing maintenance process and keep track of expiry dates. Developers on your account will receive a reminder e-mail two weeks before the expiry date and one week before the expiry date.

Manage Your Own API Keys

You can manage your own API Keys from our developer portal. Our developer portal has all the tools you need, including a full history of API Keys created, revoked or expired. See it in action here.

Most of our clients are based on our European platform (even US and Australian clients) at https://insights.sentiance.com. If you are using our US-based or Australian-based platform, please use respectively https://insights.d4.sentiance.com and https://insights.e6.sentiance.com.

Last updated