Microsoft Intune is a cloud-based service that focuses on mobile device management (MDM) and mobile application management (MAM). It allows organizations to manage devices and applications across various platforms, including Windows, iOS, and Android. Intune integrates seamlessly with Azure Active Directory and Microsoft 365 to enable secure access to company resources. It offers features like remote wipe, policy enforcement, and software distribution to maintain security and compliance. Overall, Intune provides a centralized platform for managing a mobile workforce.
In this Blueprint we show how we can index devices from Microsoft Intune using Graph API integration.
- 1 x Flow
To set up and get devices using the Microsoft Graph API endpoint https://graph.microsoft.com/beta/deviceManagement
, you'll need to go through several steps. Here's a general outline:
- Azure Subscription: You need an Azure subscription to use Azure AD and register an application.
- Office 365 Subscription: Required for device management through Microsoft Intune.
- Microsoft Intune: Make sure you have Intune set up to manage your devices.
- Go to the Azure portal and navigate to "Azure Active Directory".
- Go to "App registrations" and click "New registration".
- Fill in the details and click "Register".
- Once the app is registered, go to "API permissions".
- Click "Add a permission" and choose "Microsoft Graph".
- Under "Application permissions", add the permissions required for device management like
DeviceManagementConfiguration.ReadWrite.All
,DeviceManagementServiceConfig.ReadWrite.All
, etc.
- Go to "Certificates & secrets" and click "New client secret".
- Fill in the details and click "Add".
The
/beta
version of the API is subject to change and should not be used in production.
Add the following settings.
Key | Name | Value | Type | Tag | Role |
---|---|---|---|---|---|
_azure_intune_app_client_id | Microsoft Azure App Client ID | *** | string | intune, azure | admin |
_azure_intune_app_client_secret | Microsoft Azure App Client Secret | *** | password | intune, azure | admin |
_azure_intune_app_tenant_id | Microsoft Azure Tenant ID | *** | string | intune, azure | admin |
_azure_intune_select_fields | Fields to get for each device | id,deviceName,managedDeviceOwnerType,userId,complianceState,model,manufacturer,enrolledDateTime,lastSyncDateTime,operatingSystem,userDisplayName,userPrincipalName,managementState,deviceType,osVersion,aadRegistered,deviceEnrollmentType,serialNumber,managedDeviceName | string | intune, azure | admin |
_azure_intune_url | Microsoft Azure Graph API endpoint for device management | https://graph.microsoft.com/beta/deviceManagement | string | intune, azure | admin |
Note: Creating settings via admin interface add a trailing
_
in key. This is required for flow to work.
- Open the BPMN diagram in Camunda Modeler.
- Deploy the BPMN diagram (click
Deploy current diagram
and follow the steps). - Run it (click
Start current diagram
).
- Community/forum: https://support.onify.co/discuss
- Documentation: https://support.onify.co/docs
- Support and SLA: https://support.onify.co/docs/get-support
This project is licensed under the MIT License - see the LICENSE file for details.