List Trust Center vendors
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/vendorsconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/vendors', 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}/vendors"
response = requests.get(url)
print(response.text)Trust Access
List Trust Center vendors | Comp AI API
List published vendors and subprocessors for an organization Trust Center so reviewers can inspect third-party posture.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
vendors
List Trust Center vendors
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/vendorsconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/vendors', 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}/vendors"
response = requests.get(url)
print(response.text)Path Parameters
Trust Portal friendly URL or Organization ID
Response
200
Vendors retrieved successfully
Was this page helpful?

