Skip to main content
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
overview
Get Trust Center overview
curl --request GET \
  --url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/overview
const 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

friendlyUrl
string
required

Trust Portal friendly URL or Organization ID

Response

200

Overview retrieved successfully