Get a cloud security scan run by ID
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/runs/{runId}const options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/runs/{runId}', 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/runs/{runId}"
response = requests.get(url)
print(response.text)Cloud Security
Get a cloud security scan run by ID | Comp AI API
Get a cloud security scan run by ID in Comp AI. Run AWS, Azure, and GCP cloud security scans, detect enabled services, review findings, and connect cloud.
GET
/
v1
/
cloud-security
/
runs
/
{runId}
Get a cloud security scan run by ID
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/runs/{runId}const options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/runs/{runId}', 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/runs/{runId}"
response = requests.get(url)
print(response.text)Was this page helpful?

