Get Trust Center overview
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overviewconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overview"
response = requests.get(url)
print(response.text)Trust Access
Get Trust Center overview | Comp AI API
Retrieve the published Trust Center overview for an organization, including public security posture messaging.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
overview
Get Trust Center overview
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overviewconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overview"
response = requests.get(url)
print(response.text)Path Parameters
Trust Portal friendly URL or Organization ID
Response
200
Overview retrieved successfully
Was this page helpful?

