Skip to main content
GET
/
v1
/
trust-access
/
{friendlyUrl}
/
faqs
Get Trust Center FAQs
curl --request GET \
  --url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/faqs
const 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
    }
  ]
}

Path Parameters

friendlyUrl
string
required

Trust Portal friendly URL or Organization ID

Response

FAQs retrieved successfully

faqs
object[] | null