GET
/
risks
/
{riskId}
curl --request GET \
  --url https://api.us-east-1.aws.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.

The response is of type object.