POST
/
v1
/
device
/
windows-mdm
/
devices
/
{deviceId}
/
software
Install software on a Windows device
curl --request POST \
  --url https://coreapi-dev.us.bcpapers.ca/v1/device/windows-mdm/devices/{deviceId}/software \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "download_url": "<string>",
  "file_hash": "<string>",
  "install_type": "<string>",
  "max_attempts": 123,
  "product_id": "<string>",
  "product_version": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Paste the JWT token only (no "Bearer " prefix needed — the UI adds it automatically).

Path Parameters

deviceId
string
required

Device UUID

Body

application/json

Software installation request

download_url
string
file_hash
string
install_type
string

"msi" | "appx" | "exe"

max_attempts
integer
product_id
string
product_version
string

Response

Accepted

message
string