Get Trust Center FAQs
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faqsconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faqs', 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}/faqs"
response = requests.get(url)
print(response.text){
"faqs": [
{
"id": "<string>",
"question": "<string>",
"answer": "<string>",
"order": 123
}
]
}Trust Access
Get Trust Center FAQs | Comp AI API
Retrieve published Trust Center FAQs for an organization so public trust pages can show customer security answers.
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
faqs
Get Trust Center FAQs
curl --request GET \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faqsconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faqs', 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}/faqs"
response = requests.get(url)
print(response.text){
"faqs": [
{
"id": "<string>",
"question": "<string>",
"answer": "<string>",
"order": 123
}
]
}Was this page helpful?

