Get device-agent status
curl --request GET \
--url https://api.trycomp.ai/v1/device-agent/statusconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/device-agent/status', 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/status"
response = requests.get(url)
print(response.text)Device Agent
Get device-agent status | Comp AI API
Get device-agent status in Comp AI. Register employee devices, submit device compliance check-ins, download agent builds, and manage endpoint security status.
GET
/
v1
/
device-agent
/
status
Get device-agent status
curl --request GET \
--url https://api.trycomp.ai/v1/device-agent/statusconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/device-agent/status', 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/status"
response = requests.get(url)
print(response.text)Was this page helpful?

