API Reference
Login
KubeCluster
KubePlatform
OCI
- GETList Artifacts
- POSTCreate Artifact
- GETGet Artifact
- PUTUpdate Artifact
- DELDelete Artifact
- GETList Tags
- POSTCreate Reference
- GETGet Reference
- PUTUpdate Reference
- DELDelete Reference
- GETList Repositories
- POSTCreate Repository
- GETGet Repository
- PUTUpdate Repository
- DELDelete Repository
- GETList Tags
- POSTCreate Tag
- GETGet Tag
- PUTUpdate Tag
- DELDelete Tag
Organization
Package
- GETList Packages
- POSTCreate Package
- GETGet Package
- PUTUpdate Package
- DELDelete Package
- GETList Releases
- POSTCreate Release
- GETGet Release
- PUTUpdate Release
- DELDelete Release
- GETList VersionSets
- POSTCreate VersionSet
- GETGet VersionSet
- PUTUpdate VersionSet
- DELDelete VersionSet
- GETList Components
- POSTCreate Component
- GETGet Component
- PUTUpdate Component
- DELDelete Component
Project
- GETList Projects
- POSTCreate Project
- GETGet Project
- PUTUpdate Project
- DELDelete Project
- GETList Releases
- POSTCreate Release
- GETGet Release
- PUTUpdate Release
- DELDelete Release
- GETList ReleaseSeries
- POSTCreate ReleaseSeries
- GETGet ReleaseSeries
- PUTUpdate ReleaseSeries
- DELDelete ReleaseSeries
- GETList VersionSets
- POSTCreate VersionSet
- GETGet VersionSet
- PUTUpdate VersionSet
- DELDelete VersionSet
- GETList Components
- POSTCreate Component
- GETGet Component
- PUTUpdate Component
- DELDelete Component
Risk
Get a specific Risk
Returns the full details of a single Risk.
GET
/
risks
/
{riskId}
Get a specific Risk
Copy
Ask AI
curl --request GET \
--url https://api.us.chkk.io/v1/risks/{riskId} \
--header 'Authorization: <api-key>'
Copy
Ask AI
{
"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 credentials supplied in the Authorization header.
Path Parameters
Unique identifier for the Risk
Response
200 - application/json
Returns the requested Risk.
The response is of type object
.
Get a specific Risk
Copy
Ask AI
curl --request GET \
--url https://api.us.chkk.io/v1/risks/{riskId} \
--header 'Authorization: <api-key>'
Copy
Ask AI
{
"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"
}
Assistant
Responses are generated using AI and may contain mistakes.