Preview or download the Trust Access NDA
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/admin/requests/{id}/preview-nda \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-access/admin/requests/{id}/preview-nda', 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/admin/requests/{id}/preview-nda"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Trust Access
Preview or download the Trust Access NDA | Comp AI API
Return the executed NDA PDF for a Trust Access request once the reviewer has signed, or generate a preview copy of the agreement before signing.
POST
/
v1
/
trust-access
/
admin
/
requests
/
{id}
/
preview-nda
Preview or download the Trust Access NDA
curl --request POST \
--url https://api.trycomp.ai/v1/trust-access/admin/requests/{id}/preview-nda \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-access/admin/requests/{id}/preview-nda', 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/admin/requests/{id}/preview-nda"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Was this page helpful?

