Check a device-agent update's metadata
curl --request HEAD \
--url https://api.trycomp.ai/v1/device-agent/updates/{filename}const options = {method: 'HEAD'};
fetch('https://api.trycomp.ai/v1/device-agent/updates/{filename}', 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/updates/{filename}"
response = requests.head(url)
print(response.text)Device Agent
Check a device-agent update's metadata | Comp AI API
Check a device-agent update’s metadata in Comp AI. Register employee devices, submit device compliance check-ins, download agent builds, and manage endpoint.
HEAD
/
v1
/
device-agent
/
updates
/
{filename}
Check a device-agent update's metadata
curl --request HEAD \
--url https://api.trycomp.ai/v1/device-agent/updates/{filename}const options = {method: 'HEAD'};
fetch('https://api.trycomp.ai/v1/device-agent/updates/{filename}', 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/updates/{filename}"
response = requests.head(url)
print(response.text)Path Parameters
Response
200 - undefined
Was this page helpful?

