Submit device compliance check-in
curl --request POST \
--url https://api.trycomp.ai/v1/device-agent/check-in \
--header 'Content-Type: application/json' \
--data '
{
"deviceId": "dev_abc123def456"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({deviceId: 'dev_abc123def456'})
};
fetch('https://api.trycomp.ai/v1/device-agent/check-in', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/device-agent/check-in"
payload = { "deviceId": "dev_abc123def456" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Device Agent
Submit device compliance check-in | Comp AI API
Submit device security check results for encryption, antivirus, password policy, screen lock, and other endpoint controls.
POST
/
v1
/
device-agent
/
check-in
Submit device compliance check-in
curl --request POST \
--url https://api.trycomp.ai/v1/device-agent/check-in \
--header 'Content-Type: application/json' \
--data '
{
"deviceId": "dev_abc123def456"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({deviceId: 'dev_abc123def456'})
};
fetch('https://api.trycomp.ai/v1/device-agent/check-in', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/device-agent/check-in"
payload = { "deviceId": "dev_abc123def456" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?

