[GET] Get impact ratings

Modified on Tue, 11 Feb at 3:46 AM

https://api.s7risk.com

The Incident API provides well constructed high-quality, highly-tailored and scalable threat intelligence data.

GET /impact-ratingsGet impact ratings

This endpoint provides information about our impact ratings.

HTTP Request

curl -X GET 'https://api.s7risk.com/impact-ratings' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer {{YOUR_AUTHENTICATION_TOKEN}}' \
  -d 'search=permanent' \
  -d 'sort=rating:desc' \
  -d 'page=1' \
  -d 'pageSize=10' \
  --compressed

Headers

NameTypeRequiredDescription
Authorizationstring✔️Your authentication token (see the Auth API section for more information)

Query Parameters

NameTypeDescription
searchstringSearch impact rating descriptions using the given search term
sortstringSort the results by the given properties. Available options rating:asc or rating:asc. If no sort order is specified then results are sorted by their rating
pageintA paginated result set. Defaults to 1
pageSizeintA limited result set. Defaults to 100

HTTP Response

{
    "data": [
        {
            "rating": 5,
            "shortDescription": "Extreme",
            "longDescription": "Fatalities, multiple permanent disabilities or hospitalisation. Significant financial loss, more than $50,000. Significant business interruption, more than 6 lost time workdays. Major negative reputational exposure. Outside assistance required to contain risk. Significant irreversible impacts."
        },
        {
            "rating": 4,
            "shortDescription": "Major",
            "longDescription": "Permanent disability or multiple hospitalisations, major health effects. Major financial loss, more than $10,000 USD but less than $50,0000 USD. Major business interruption, 3-6 lost time work days. Major negative reputational exposure. Outside assistance required to contain risk. Some irreversible impacts."
        }
    ]
}

Success

CodeStatusDescription
200SuccessReturns a body containing all valid impact ratings.

Errors

CodeStatusDescription
401UnauthorizedExpired or Invalid Authentication token

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article