Get task item activity log
curl --request GET \
--url https://api.trycomp.ai/v1/task-management/{id}/activity \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/task-management/{id}/activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/task-management/{id}/activity"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Task Management
Get task item activity log | Comp AI API
Get task item activity log in Comp AI. Manage task items and attachments linked to operational entities such as risks and vendors.
GET
/
v1
/
task-management
/
{id}
/
activity
Get task item activity log
curl --request GET \
--url https://api.trycomp.ai/v1/task-management/{id}/activity \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/task-management/{id}/activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/task-management/{id}/activity"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

