Download Windows Device Agent ZIP
curl --request GET \
--url https://api.trycomp.ai/v1/device-agent/windows \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/device-agent/windows', 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/windows"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"Binary ZIP file content"Device Agent
Download Windows Device Agent ZIP | Comp AI API
Downloads a ZIP package containing the Comp AI Device Agent installer for Windows, along with setup scripts and instructions. The package includes an MSI.
GET
/
v1
/
device-agent
/
windows
Download Windows Device Agent ZIP
curl --request GET \
--url https://api.trycomp.ai/v1/device-agent/windows \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/device-agent/windows', 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/windows"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"Binary ZIP file content"Authorizations
API key for authentication
Response
default - application/zip
Internal server error
Windows agent file not found in S3
Unauthorized - Invalid or missing authentication
Windows agent ZIP file download containing MSI installer and setup scripts
The response is of type file.
Was this page helpful?

