How to authenticate with Config API
The Config API uses Bearer authentication (also called token authentication) following the OAuth 2.0 standards.
All API requests must be made over HTTPS and requests without a valid Bearer token will fail.
How to get an authentication token
To get your authentication token you’ll need to initiate a session. It will generate an accessToken that can be used for any subsequent requests to Config API.
The following steps will guide you to authenticate to our Config API
Make a
POST
request to the/sessions
with your credentials{
"email": "user@email.com",
"password": "Secret_Password_123"
}The response will return an object with the following structure
{
"statusCode": 201,
"idToken": "string",
"accessToken": "string",
"refreshToken": "string"
}Subsequent requests to the API can be made by passing in
Bearer <accessToken>
into the request Authorization header. This is an example of how you would get the list of Projects// NODE.JS
const https \= require('https');
const options \= {
host: 'config.bluedot.io',
path: '/prod1/projects',
headers: { 'Authorization': 'Bearer <accessToken>' }
};
const data \= \[\]
https.get(options, (res) \=>; {
res.setEncoding('utf8');
res.on('data', chunk \=> {
data.push(chunk)
});
res.on('error', error \=> {
console.error(error)
})
res.on('end', () \=> {
console.log(data);
})
});
Expiry time of the Tokens
accessToken
: An Access Token is a credential that can be used by an application to access the Configuration API. It is active for 1 hour.
refreshToken
: The Refresh Token is a special token that can be used to obtain a renewed accessToken
. It is active for 60 days.
Best Practises on using the Session API
- Have a fail/retry strategy for using the access token – if it expires, catch the failure, reauthenticate to get a new access token and try again.
- The refresh token can be used, but for an m2m integration, it’s less important (the email/password can be used instead). The refresh token is typically used by less secure clients such as browsers.
Explore Config API
Config API has a number of endpoints that can help you manage your Bluedot account, including creating new Zones or updating the configuration of a Projects. For further information please refer to Config API Reference