Mark a phase as ready for review
curl --request POST \
--url https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Timelines
Mark a phase as ready for review | Comp AI API
Mark a phase as ready for review in Comp AI. Track audit and compliance readiness timelines, phases, and review milestones for an organization.
POST
/
v1
/
timelines
/
{id}
/
phases
/
{phaseId}
/
ready
Mark a phase as ready for review
curl --request POST \
--url https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/timelines/{id}/phases/{phaseId}/ready"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Was this page helpful?

