List policies with framework template updates available
curl --request GET \
--url https://api.trycomp.ai/v1/policy-template-updates \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/policy-template-updates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/policy-template-updates"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Policies
List policies with framework template updates | Comp AI API
List policies with framework template updates available in Comp AI. Create, version, publish, export, map, and improve compliance policies with AI-assisted.
GET
/
v1
/
policy-template-updates
List policies with framework template updates available
curl --request GET \
--url https://api.trycomp.ai/v1/policy-template-updates \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/policy-template-updates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/policy-template-updates"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

