Get an ISMS document with its latest version
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id} \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/documents/{id}', 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}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)ISMS
Get an ISMS document with its latest version | Comp AI API
Returns one ISMS document with every register expanded — context issues, interested parties, objectives, roles, metrics, audits, reviews and linked controls.
GET
/
v1
/
isms
/
documents
/
{id}
Get an ISMS document with its latest version
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id} \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/documents/{id}', 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}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

