Microsoft Endpoint Configuration Management Create and Assign Device Configuration

Version 1.0.0

Create a device configuration profile in Intune and assign it to a target group.

1 workflow 1 source API 1 provider
View Spec View on GitHub ComplianceConfiguration ManagementDevice ManagementEndpoint ManagementMobile Device ManagementPatch ManagementSoftware DeploymentArazzoWorkflows

Provider

microsoft-endpoint-configuration-management

Workflows

create-and-assign-device-configuration
Create a device configuration profile, verify it, and assign it to a group.
Creates a deviceConfiguration with the supplied display name and description, reads the created profile back by id, and assigns it to the supplied Azure AD group.
3 steps inputs: accessToken, description, displayName, groupId outputs: assignmentStatus, configurationId, verifiedDisplayName
1
createConfiguration
Create a new device configuration profile.
2
verifyConfiguration
Read the created configuration profile back by id to confirm persistence.
3
assignConfiguration
Assign the configuration profile to the supplied Azure AD group.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Endpoint Configuration Management Create and Assign Device Configuration
  summary: Create a device configuration profile in Intune and assign it to a target group.
  description: >-
    A core Intune configuration management flow. The workflow creates a new
    device configuration profile through the Microsoft Graph API, reads it
    back to confirm persistence, and then posts an assignment that targets an
    Azure AD group so the profile is delivered to enrolled devices. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: configurationProfilesApi
  url: ../openapi/microsoft-endpoint-configuration-management-configuration-profiles-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-assign-device-configuration
  summary: Create a device configuration profile, verify it, and assign it to a group.
  description: >-
    Creates a deviceConfiguration with the supplied display name and
    description, reads the created profile back by id, and assigns it to the
    supplied Azure AD group.
  inputs:
    type: object
    required:
    - displayName
    - groupId
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for Microsoft Graph (DeviceManagementConfiguration.ReadWrite.All).
      displayName:
        type: string
        description: Admin provided name for the configuration profile.
      description:
        type: string
        description: Admin provided description of the configuration profile.
      groupId:
        type: string
        description: The Azure AD group id the configuration assignment targets.
  steps:
  - stepId: createConfiguration
    description: Create a new device configuration profile.
    operationId: createDeviceConfiguration
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.displayName
        description: $inputs.description
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      configurationId: $response.body#/id
  - stepId: verifyConfiguration
    description: Read the created configuration profile back by id to confirm persistence.
    operationId: getDeviceConfiguration
    parameters:
    - name: deviceConfigurationId
      in: path
      value: $steps.createConfiguration.outputs.configurationId
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      verifiedDisplayName: $response.body#/displayName
  - stepId: assignConfiguration
    description: Assign the configuration profile to the supplied Azure AD group.
    operationId: assignDeviceConfiguration
    parameters:
    - name: deviceConfigurationId
      in: path
      value: $steps.createConfiguration.outputs.configurationId
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        assignments:
        - target:
            '@odata.type': "#microsoft.graph.groupAssignmentTarget"
            groupId: $inputs.groupId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assignmentStatus: $statusCode
  outputs:
    configurationId: $steps.createConfiguration.outputs.configurationId
    verifiedDisplayName: $steps.verifyConfiguration.outputs.verifiedDisplayName
    assignmentStatus: $steps.assignConfiguration.outputs.assignmentStatus

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/microsoft-endpoint-configuration-management-create-assign-device-configuration-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.