IntegrationsMicrosoft intuneActions
Get Intune configuration profile
Get one device configuration profile by id.
configuration_profiles.get · Microsoft Intune · v1
Details
Scopes
intune.configuration.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
profile_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
display_name | string | No | maxLength 512 |
description | string | No | maxLength 1024 |
version | integer | No | minimum 0 |
created_at | string | No | minLength 1; maxLength 64 |
last_modified_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"profile_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"profile_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"display_name": {
"type": "string",
"maxLength": 512
},
"description": {
"type": "string",
"maxLength": 1024
},
"version": {
"type": "integer",
"minimum": 0
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_modified_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
}