Export automation evidence as PDF
curl --request GET \
--url https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Evidence Export
Export automation evidence as PDF | Comp AI API
Export automation evidence as PDF in Comp AI. Export task evidence, automation evidence, and reviewer-ready evidence bundles as PDF or ZIP files.
GET
/
v1
/
tasks
/
{taskId}
/
evidence
/
automation
/
{automationId}
/
pdf
Export automation evidence as PDF
curl --request GET \
--url https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/tasks/{taskId}/evidence/automation/{automationId}/pdf"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

