Get org-authored custom frameworks shown on a trust portal
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-frameworksconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-frameworks', 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-frameworks"
response = requests.get(url)
print(response.text)Trust Access
Get org-authored custom frameworks shown on a | Comp AI API
Get org-authored custom frameworks shown on a trust portal in Comp AI. Manage external Trust Center access requests, NDA signing, grants, tokenized document.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
custom-frameworks
Get org-authored custom frameworks shown on a trust portal
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-frameworksconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/custom-frameworks', 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-frameworks"
response = requests.get(url)
print(response.text)Path Parameters
Trust Portal friendly URL or Organization ID
Response
200
Custom frameworks retrieved successfully
Was this page helpful?

