Eliq Data Management AP: Authentication
Eliq Data Management API uses client credentials as Authentication grant type, following Oauth2.0 standards (https://oauth.net/2/grant-types/client-credentials). Client id and client secret are generated at request by Eliq. The access token obtained from the auth request should later be passed as a Bearer to our API’s.
The client credentials, or access token generated using client credentials, must never be stored insecurely or transmitted to a client app (e.g. mobile or web).
Please find example request below
POST /oauth/token
{
"grant_type": "client_credentials",
"client_id": "{client id}",
"client_secret": "{client secret}"
}
| Field | Type | Description |
|---|---|---|
| grant_type | String | Grant type. Currently, only client credentials are supported. |
| client_id | String | Your client id |
| client_secret | String | Your client secret |