How to authenticate with the Risk Intelligence API using JWT-based credentials.
client_id
and
client_secret
to obtain an access token, which is then used to authorize all subsequent API requests.4
client_id
and client_secret
will be provided by our customer support team upon onboarding.POST
request to the /v1/auth
endpoint with their client_id
and client_secret
.
If successful, the response includes:
access_token
— a short-lived token used for authenticating API requestsrefresh_token
— used to renew the access token without re-authenticatingPOST
request to /v1/auth/refresh
with a
valid refresh_token
.
Authorization
header of every API request: Authorization: Bearer <access_token>
429 Too Many Requests
Retry-After
header will be included in the response, indicating how long the client must wait before retrying the request.