IntegrationsMicrosoft intuneActions
List devices for a detected app
List managed devices that reported a detected app.
detected_apps.devices.list · Microsoft Intune · v1
Details
Scopes
intune.devices.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
detected_app_id | string | Yes | minLength 1; maxLength 128 |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 2048 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
devices | array<object> | Yes | maxItems 100 |
devices[] | object | Yes | additionalProperties false |
devices[].id | string | Yes | minLength 1; maxLength 128 |
devices[].device_name | string | No | maxLength 512 |
devices[].operating_system | string | No | maxLength 512 |
devices[].os_version | string | No | maxLength 128 |
devices[].compliance_state | string | No | maxLength 128 |
devices[].management_state | string | No | maxLength 128 |
devices[].ownership | string | No | maxLength 128 |
devices[].azure_ad_device_id | string | No | minLength 1; maxLength 128 |
devices[].user_id | string | No | minLength 1; maxLength 128 |
devices[].user_principal_name | string | No | maxLength 320 |
devices[].serial_number | string | No | maxLength 128 |
devices[].last_sync_at | string | No | minLength 1; maxLength 64 |
devices[].enrolled_at | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"detected_app_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"detected_app_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"devices": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"device_name": {
"type": "string",
"maxLength": 512
},
"operating_system": {
"type": "string",
"maxLength": 512
},
"os_version": {
"type": "string",
"maxLength": 128
},
"compliance_state": {
"type": "string",
"maxLength": 128
},
"management_state": {
"type": "string",
"maxLength": 128
},
"ownership": {
"type": "string",
"maxLength": 128
},
"azure_ad_device_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_principal_name": {
"type": "string",
"maxLength": 320
},
"serial_number": {
"type": "string",
"maxLength": 128
},
"last_sync_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"enrolled_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"devices"
]
}