Skip to main content
GET
/
risks
/
{riskId}
Get a specific Risk
curl --request GET \
  --url https://api.us.chkk.io/v1/risks/{riskId} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "signature": {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "tags": [
      "category:guardrail"
    ],
    "links": [
      {
        "url": "<string>",
        "type": "generic",
        "description": "<string>"
      }
    ]
  },
  "remediation": "<string>",
  "mitigation": "<string>",
  "root_cause": "<string>",
  "severity": "low",
  "location": {
    "cluster": "<string>"
  },
  "status": {
    "lifecycle": "ignored",
    "reason": "FalsePositive",
    "comment": "<string>",
    "identity": {
      "type": "aws",
      "aws_identity_arn": "<string>"
    },
    "updated": "2023-11-07T05:31:56Z"
  },
  "last_detected": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Authorization credentials supplied in the Authorization header.

Path Parameters

id
string
required

Unique identifier for the Risk

Response

200 - application/json

Returns the requested Risk.

id
string
required

Unique identifier for the Risk.

signature
object
required

RiskSignature is the source of Operational Risk for a customer.

location
object
required
last_detected
string<date-time>
required

Time when the Risk was most recently identified.

remediation
string

Guidance on how to remediate and permanently fix the Risk from your environment.

mitigation
string

Guidance on how to temporarily resolve the Risk from your environment.

root_cause
string

Underlying condition that causes the Risk to manifest.

severity
enum<string>

The severity of a Risk. It is a measure of the combination of probability and impact of a Risk materializing

Available options:
low,
medium,
high,
critical
status
object

Details about the status of the Risk including its lifecycle state.

I