GET
/
risks
/
{riskId}
/
resources
curl --request GET \
  --url https://api.us-east-1.aws.chkk.io/v1/risks/{riskId}/resources \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "type": "k8s",
      "kind": "<string>",
      "name": "<string>",
      "namespace": "<string>"
    }
  ],
  "continuation_token": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization credentials supplied in the Authorization header.

Path Parameters

id
string
required

Unique identifier of the Risk whose affected resources you want to list.

Query Parameters

page_size
integer
default:100

Number of resources to return per page

Required range: 1 <= x <= 1000
continuation_token
string

Opaque token for pagination

Response

200 - application/json

Returns an array of RiskAffectedResource objects.

The response is of type object.