Approve an ISMS document
curl --request POST \
--url https://api.trycomp.ai/v1/isms/documents/{id}/approve \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/documents/{id}/approve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/isms/documents/{id}/approve"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)ISMS
Approve an ISMS document | Comp AI API
Approves an ISMS document that is pending review, freezing an immutable published version with PDF and DOCX renders. Only the assigned approver can call it.
POST
/
v1
/
isms
/
documents
/
{id}
/
approve
Approve an ISMS document
curl --request POST \
--url https://api.trycomp.ai/v1/isms/documents/{id}/approve \
--header 'X-API-Key: <api-key>'const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/documents/{id}/approve', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/isms/documents/{id}/approve"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)Was this page helpful?

