List Trust Center custom links
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-linksconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-links', 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}/custom-links"
response = requests.get(url)
print(response.text)Trust Access
List Trust Center custom links | Comp AI API
List published custom links shown on an organization Trust Center for customer security and compliance reviews.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
custom-links
List Trust Center custom links
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-linksconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-links', 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}/custom-links"
response = requests.get(url)
print(response.text)Path Parameters
Trust Portal friendly URL or Organization ID
Response
200
Custom links retrieved successfully
Was this page helpful?

