Detect drift against the approved snapshot
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id}/drift \
--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}/drift', 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}/drift"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)ISMS
Detect drift against the approved snapshot | Comp AI API
Reports whether an ISMS document’s derived content is stale by comparing the platform data captured at its last generation against current data. Returns.
GET
/
v1
/
isms
/
documents
/
{id}
/
drift
Detect drift against the approved snapshot
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id}/drift \
--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}/drift', 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}/drift"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

