Submit Trust Access request
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/requests \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', email: '<string>'})
};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/requests', 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}/requests"
payload = {
"name": "<string>",
"email": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Trust Access
Submit Trust Access request | Comp AI API
Submit a Trust Center access request with requester details, company context, and review reason for administrator approval.
POST
/
v1
/
trust-access
/
{friendlyUrl}
/
requests
Submit Trust Access request
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/requests \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', email: '<string>'})
};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/requests', 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}/requests"
payload = {
"name": "<string>",
"email": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?

