Get Score Insights
Use this API to get a count of log-in events grouped by their risk score bucket. You can use the results of this API to determine the risk level of the majority of users which can be useful when deciding the Smart Factor risk level to set.
The risk score bucket ranges are:
- Minimal (<5)
- Low (>5 and < 26)
- Medium (>26 and < 51)
- High (>51 and <76)
- Very High (>76)
These ranges are consistent with the Smart Factor settings in the OneLogin policy UI.
Resource URL
https://<api-domain>/api/2/risk/scores
Header Parameters
Authorization required string | Set to Set The access token must have been generated using an API credential pair created using the scope required to call this API. This API can be called using any one of the following scopes: |
Query Parameters
before string |
Optional ISO8601 formatted date string. Defaults to current date. Maximum date is 90 days ago. |
after string |
Optional ISO8601 formatted date string. Defaults to 30 days ago. Maximum date is 90 days ago. |
Sample Response
- 200 OK
- 401 Unauthorized
{
"scores": {
"minimal": 50,
"low": 165,
"medium": 30,
"high": 17,
"very_high": 9
},
"total": 271
}
Invalid Access Token
Sample Code
cURL
curl -XGET 'https://api.us.onelogin.com/api/2/risk/scores' \
-H 'Authorization: Bearer xxxxxxxxxxxxx'
Postman Collection
Replace sample variables indicated by {{ }}
with your actual values.
Download for the Vigilance API
Have a Question?

Have a how-to question? Seeing a weird error? Ask us about it on StackOverflow.

Found a bug? Submit a support ticket.

Have a product idea or request? Share it with us in our Ideas Portal.