Delete a row in an ISMS register
curl --request DELETE \
--url https://api.trycomp.ai/v1/isms/registers/{register}/{rowId} \
--header 'X-API-Key: <api-key>'const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/registers/{register}/{rowId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/isms/registers/{register}/{rowId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)ISMS
Delete a row in an ISMS register | Comp AI API
Permanently deletes one row from an ISMS register, and cascades: deleting an audit removes its controls and findings, and deleting a metric removes its.
DELETE
/
v1
/
isms
/
registers
/
{register}
/
{rowId}
Delete a row in an ISMS register
curl --request DELETE \
--url https://api.trycomp.ai/v1/isms/registers/{register}/{rowId} \
--header 'X-API-Key: <api-key>'const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/isms/registers/{register}/{rowId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/isms/registers/{register}/{rowId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Path Parameters
Which ISMS register the row belongs to.
Available options:
context-issues, interested-parties, requirements, objectives, roles, role-assignments, metrics, measurements, audits, audit-controls, audit-findings, reviews, review-inputs, review-actions, communications, obligations, key-records, approved-software, nonconformities, business-processes, continuity-playbooks, continuity-contacts, recovery-systems Response
200
Register row deleted
Was this page helpful?

