Microsoft Endpoint Configuration Management Non-Compliance Report Drilldown

Version 1.0.0

Pull the device, policy, and setting non-compliance reports inline in one pass.

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

noncompliance-report-drilldown
Retrieve device, policy, and setting non-compliance reports in sequence.
Calls getDeviceNonComplianceReport, then getCompliancePolicyNonComplianceReport, then getComplianceSettingNonComplianceReport, each with the supplied filter, to drill from device-level into policy- and setting-level non-compliance.
3 steps inputs: accessToken, filter, top outputs: deviceRowCount, policyRowCount, settingRowCount
1
deviceReport
Retrieve the device non-compliance report.
2
policyReport
Retrieve the compliance policy non-compliance report.
3
settingReport
Retrieve the compliance setting non-compliance report.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Endpoint Configuration Management Non-Compliance Report Drilldown
  summary: Pull the device, policy, and setting non-compliance reports inline in one pass.
  description: >-
    A compliance investigation flow built on the inline Intune reporting
    endpoints. The workflow retrieves the device non-compliance report, then
    drills into the compliance policy non-compliance report, and finally the
    compliance setting non-compliance report, giving an operator a layered view
    of where devices are falling out of policy. 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: reportsApi
  url: ../openapi/microsoft-endpoint-configuration-management-reports-api-openapi.yml
  type: openapi
workflows:
- workflowId: noncompliance-report-drilldown
  summary: Retrieve device, policy, and setting non-compliance reports in sequence.
  description: >-
    Calls getDeviceNonComplianceReport, then getCompliancePolicyNonComplianceReport,
    then getComplianceSettingNonComplianceReport, each with the supplied filter,
    to drill from device-level into policy- and setting-level non-compliance.
  inputs:
    type: object
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for Microsoft Graph (DeviceManagementConfiguration.Read.All).
      filter:
        type: string
        description: Filter expression applied to each report.
      top:
        type: integer
        description: Maximum number of records to return per report.
  steps:
  - stepId: deviceReport
    description: Retrieve the device non-compliance report.
    operationId: getDeviceNonComplianceReport
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        name: DeviceNonCompliance
        filter: $inputs.filter
        top: $inputs.top
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deviceRowCount: $response.body#/totalRowCount
      deviceValues: $response.body#/values
  - stepId: policyReport
    description: Retrieve the compliance policy non-compliance report.
    operationId: getCompliancePolicyNonComplianceReport
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        name: CompliancePolicyNonCompliance
        filter: $inputs.filter
        top: $inputs.top
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      policyRowCount: $response.body#/totalRowCount
      policyValues: $response.body#/values
  - stepId: settingReport
    description: Retrieve the compliance setting non-compliance report.
    operationId: getComplianceSettingNonComplianceReport
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        name: ComplianceSettingNonCompliance
        filter: $inputs.filter
        top: $inputs.top
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      settingRowCount: $response.body#/totalRowCount
      settingValues: $response.body#/values
  outputs:
    deviceRowCount: $steps.deviceReport.outputs.deviceRowCount
    policyRowCount: $steps.policyReport.outputs.policyRowCount
    settingRowCount: $steps.settingReport.outputs.settingRowCount

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-noncompliance-report-drilldown-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.