Category Filter
List Device Policies
Returns the list of policies associated with a device.
Parameters | Type | Description | Default value |
---|---|---|---|
page | Integer | Optional | 1 |
per_page | Integer | Optional | 100 |
curl
HTTP Request:
Shell Command:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/policies/?page=1 |
Shell Command:
1 |
curl -H "Authorization: <your API key>" "https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/policies/?page=1" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{ "count":2, "next":null, "previous":null, "results":[ { "id":4, "name": "ios policy", "version": 4 }, ... ] } |