Skip to main content
FuseFuse
IntegrationsMicrosoft intuneActions

Get Intune compliance policy

Get one device compliance policy by id.

Agent markdown

compliance_policies.get · Microsoft Intune · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • intune.compliance.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
policy_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
display_namestringNomaxLength 512
descriptionstringNomaxLength 1024
versionintegerNominimum 0
created_atstringNominLength 1; maxLength 64
last_modified_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "policy_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "policy_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"
  ]
}