Get activity history for a finding
curl --request GET \
--url https://api.trycomp.ai/v1/findings/{id}/history \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/findings/{id}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/findings/{id}/history"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Findings
Get activity history for a finding | Comp AI API
Get activity history for a finding in Comp AI. Create, review, update, and track audit findings, remediation activity, and finding history for an.
GET
/
v1
/
findings
/
{id}
/
history
Get activity history for a finding
curl --request GET \
--url https://api.trycomp.ai/v1/findings/{id}/history \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/findings/{id}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/findings/{id}/history"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

