Get fleet compliance
curl --request GET \
--url https://api.trycomp.ai/v1/people/{id}/fleet-compliance \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/{id}/fleet-compliance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/{id}/fleet-compliance"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)People
Get fleet compliance | Comp AI API
Retrieve Fleet device compliance status so endpoint security findings can support people-security controls and audit evidence.
GET
/
v1
/
people
/
{id}
/
fleet-compliance
Get fleet compliance
curl --request GET \
--url https://api.trycomp.ai/v1/people/{id}/fleet-compliance \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/people/{id}/fleet-compliance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/people/{id}/fleet-compliance"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

