Resolve the "About this check" description for a finding (AI-cached for AWS; provider-derived for GCP/Azure)
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definitionconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definition', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definition"
response = requests.get(url)
print(response.text)Cloud Security
Resolve the "About this check" description | Comp AI API
Resolve the “About this check” description for a finding (AI-cached for AWS; provider-derived for GCP/Azure) in Comp AI. Run AWS, Azure, and GCP cloud.
GET
/
v1
/
cloud-security
/
findings
/
{findingId}
/
check-definition
Resolve the "About this check" description for a finding (AI-cached for AWS; provider-derived for GCP/Azure)
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definitionconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definition', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/cloud-security/findings/{findingId}/check-definition"
response = requests.get(url)
print(response.text)Path Parameters
Response
200 - undefined
Was this page helpful?

