Authentication

Authentication overview

Authentication oAuth2 client credentials flow

All our endpoints are authenticated with oAuth2 client credentials flow. It means APIs are application authenticated (server side). You would need to get a client id and secret to obtain a access token using our API /oauth2/token .

Client credentials flow
  1. Application sends application's credentials to the oAuth2 Authorization Server with the authorization scopes you want to access.

  2. oAuth2 Authorization Server validates application's credentials.

  3. oAuth2 Authorization Server responds with an access token.

  4. Application can use the access token to call an API on behalf of itself.

  5. API responds with requested data.

For more details please refers to RFC 6749 .

See API reference there:

oAuth2 API

Last updated

Was this helpful?