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://<subdomain>/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://<subdomain>.onelogin.com/api/2/risk/scores' \
-H 'Authorization: Bearer xxxxxxxxxxxxx'
Postman Collection
- Clicking Run in Postman button navigates to the page where you can fork the collection to your workspace. Forking the collection into your workspace will enable you to contribute to the source collection using pull requests. You can also view the collection in a public workspace if you like and even import a copy of the collection using the links present on the screen.
Have a Question?
Found a problem or a bug? Submit a support ticket.
Looking for walkthroughs or how-to guides on OneLogin's user and admin features? Check out the documentation in our Knowledge Base.
Have a product idea or request? Share it with us in our Ideas Portal.