Category Filter
Action Status
Returns status of actions executed in devices.
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}/action_status/?page=2 |
Shell Command:
1 |
curl -H "Authorization: <your API key>" "https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/action_status/?page=2" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
{ "count": 270, "next":https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/action_status/?page=3, "previous": https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/action_status?/page=1, "results": [ { "status": pending, "finished_time": null, "action_label": "Scan Device Location", "subject_details": {}, "error_code": null, “error_message”: null, "created_time": "2017-04-12T15:00:04.725Z" }, { "status": "success", "finished_time": "2017-04-06T15:59:40.959Z", "action_label": "Associate Policy", "subject_details": { "identifier": "com.hexnode.mdm.3287302066", "link": "#", "name": "Effective Profile v2" }, "error_code":null, "error_message" : null, "created_time" : "2017-04-06T15:59:4.959Z" } ] } |