Create a custom framework for this organization
curl --request POST \
--url https://api.trycomp.ai/v1/frameworks/custom \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "Internal Controls",
"description": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: 'Internal Controls', description: '<string>'})
};
fetch('https://api.trycomp.ai/v1/frameworks/custom', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/frameworks/custom"
payload = {
"name": "Internal Controls",
"description": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Frameworks
Create a custom framework for this | Comp AI API
Create a custom framework for this organization in Comp AI. Manage SOC 2, ISO 27001, HIPAA, GDPR, and custom framework instances, requirements, scores.
POST
/
v1
/
frameworks
/
custom
Create a custom framework for this organization
curl --request POST \
--url https://api.trycomp.ai/v1/frameworks/custom \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "Internal Controls",
"description": "<string>"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: 'Internal Controls', description: '<string>'})
};
fetch('https://api.trycomp.ai/v1/frameworks/custom', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/frameworks/custom"
payload = {
"name": "Internal Controls",
"description": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?

