Skip to main content
FuseFuse
IntegrationsMicrosoft intuneActions

List configuration profile assignments

List assignment targets for a configuration profile.

Agent markdown

configuration_profiles.assignments.list · 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.configuration.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
profile_idstringYesminLength 1; maxLength 128
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 2048

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
assignmentsarray<object>YesmaxItems 100
assignments[]objectYesadditionalProperties false
assignments[].idstringYesminLength 1; maxLength 128
assignments[].target_typestringNomaxLength 256
assignments[].group_idstringNominLength 1; maxLength 128
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "profile_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "profile_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "assignments": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "target_type": {
            "type": "string",
            "maxLength": 256
          },
          "group_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "assignments"
  ]
}