The RiskLens API uses the OAuth 2 standard for authentication. This requires API consumers to first authentication authenticate with the RiskLens authentication server to receive a bearer token for all subsequent API requests.
...
The authentication call does not use the same URL as the RiskLens API. Use one of the below URL’s URLs for authentication requests.
...
The following code example shows how to obtain an access token. The request is done with cURL but can be done in any language. The ‘clientclient_id ' and ' client_secret’ secret are the ones provided when you create an API Client client in RiskLens.
cURL Authentication Request Example
...
The response provides you an access token, specifies how long it is valid for, and the token type. All tokens that are returned are current bearer tokens. This token is These tokens are used on all subsequent calls to the RiskLens API. When the token expires, you will need to request a new token.
...