List org-authored custom frameworks with their trust portal selection
curl --request GET \
--url https://api.trycomp.ai/v1/trust-portal/custom-frameworks \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-portal/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-portal/custom-frameworks"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Trust Portal
List org-authored custom frameworks with | Comp AI API
List org-authored custom frameworks with their trust portal selection in Comp AI. Configure the live Trust Center, custom domain, public overview, FAQs.
GET
/
v1
/
trust-portal
/
custom-frameworks
List org-authored custom frameworks with their trust portal selection
curl --request GET \
--url https://api.trycomp.ai/v1/trust-portal/custom-frameworks \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-portal/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-portal/custom-frameworks"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Response
200 - undefined
Was this page helpful?

