Reclaim Trust Access link
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/reclaim \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: '<string>'})
};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/reclaim', 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}/reclaim"
payload = { "email": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Trust Access
Reclaim Trust Access link | Comp AI API
Request a fresh Trust Access link for a reviewer who already has an active grant on a published Trust Center.
POST
/
v1
/
trust-access
/
{friendlyUrl}
/
reclaim
Reclaim Trust Access link
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/reclaim \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: '<string>'})
};
fetch('https://api.trycomp.ai/v1/trust-access/{friendlyUrl}/reclaim', 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}/reclaim"
payload = { "email": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?

