Category Filter
List all Automations
Overview
This API fetches a comprehensive list of all Automations currently configured within the Hexnode UEM console.
curl
HTTP Request:
|
1 |
GET https://<portal>.hexnodemdm.com/api/v1/automations/list/ |
Shell Command:
|
1 |
curl -H "Authorization: <api key>" https://<portal>.hexnodemdm.com/api/v1/automations/list/ |
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 29 30 31 32 33 34 35 36 37 |
{ "profileList": [ { "id": 1, "name": "iOS Automation", "target_platform": "ios", "version": 1, "description": null, "created_by": "geroge@hexnode.com", "created_on": "2025-12-22T06:49:33.306788Z", "history": { "finish_time": "2025-12-22T08:24:19.402Z", "initiated_time": "2025-12-22T08:10:11.670Z" }, "archived": false, "archived_time": null, "status": "Waiting" }, { "id": 2, "name": "Android Automation", "target_platform": "android", "version": 3, "description": null, "created_by": "henry@hexnode.com", "created_on": "2025-12-19T07:49:37.027446Z", "history": { "finish_time": null, "initiated_time": "2025-12-22T06:47:19.458Z" }, "archived": false, "archived_time": null, "status": "Waiting" } ], "totalSize": 2 } |