The Risk Treatment Plan's rows (Clause 6.1.3)
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id}/risk-treatment \
--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}/risk-treatment', 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}/risk-treatment"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)ISMS
The Risk Treatment Plan's rows (Clause 6.1.3) | Comp AI API
Returns the organisational and supplier risk rows the Risk Treatment Plan renders (from the Risk Register and Vendors, with acceptance state per row) plus.
GET
/
v1
/
isms
/
documents
/
{id}
/
risk-treatment
The Risk Treatment Plan's rows (Clause 6.1.3)
curl --request GET \
--url https://api.trycomp.ai/v1/isms/documents/{id}/risk-treatment \
--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}/risk-treatment', 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}/risk-treatment"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

