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

