Set up Azure for a connection
curl --request POST \
--url https://api.trycomp.ai/v1/cloud-security/setup-azure/{connectionId}const options = {method: 'POST'};
fetch('https://api.trycomp.ai/v1/cloud-security/setup-azure/{connectionId}', 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/setup-azure/{connectionId}"
response = requests.post(url)
print(response.text)Cloud Security
Set up Azure for a connection | Comp AI API
Set up Azure for a connection in Comp AI. Run AWS, Azure, and GCP cloud security scans, detect enabled services, review findings, and connect cloud posture.
POST
/
v1
/
cloud-security
/
setup-azure
/
{connectionId}
Set up Azure for a connection
curl --request POST \
--url https://api.trycomp.ai/v1/cloud-security/setup-azure/{connectionId}const options = {method: 'POST'};
fetch('https://api.trycomp.ai/v1/cloud-security/setup-azure/{connectionId}', 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/setup-azure/{connectionId}"
response = requests.post(url)
print(response.text)Path Parameters
Response
201 - undefined
Was this page helpful?

