Update detectedApp
Article
11/30/2023
9 contributors
Feedback
In this article
Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a detectedApp object.
This API is available in the following national cloud deployments .
Global service
US Government L4
US Government L5 (DOD)
China operated by 21Vianet
✅
✅
✅
✅
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
DeviceManagementManagedDevices.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
DeviceManagementManagedDevices.ReadWrite.All
HTTP Request
PATCH /deviceManagement/detectedApps/{detectedAppId}
Header
Value
Authorization
Bearer <token> Required.
Accept
application/json
Request body
In the request body, supply a JSON representation for the detectedApp object.
The following table shows the properties that are required when you create the detectedApp .
Property
Type
Description
id
String
The unique Identifier for the detected application. This is automatically generated by Intune at the time the application is created. Read-only.
displayName
String
Name of the discovered application. Read-only
version
String
Version of the discovered application. Read-only
sizeInByte
Int64
Discovered application size in bytes. Read-only
deviceCount
Int32
The number of devices that have installed this application
publisher
String
Indicates the publisher of the discovered application. For example: 'Microsoft'. The default value is an empty string.
platform
detectedAppPlatformType
Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0). Possible values are: unknown
, windows
, windowsMobile
, windowsHolographic
, ios
, macOS
, chromeOS
, androidOSP
, androidDeviceAdministrator
, androidWorkProfile
, androidDedicatedAndFullyManaged
, unknownFutureValue
.
Response
If successful, this method returns a 200 OK
response code and an updated detectedApp object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/v1.0/deviceManagement/detectedApps/{detectedAppId}
Content-type: application/json
Content-length: 228
{
"@odata.type": "#microsoft.graph.detectedApp",
"displayName": "Display Name value",
"version": "Version value",
"sizeInByte": 10,
"deviceCount": 11,
"publisher": "Publisher value",
"platform": "windows"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new DetectedApp
{
OdataType = "#microsoft.graph.detectedApp",
DisplayName = "Display Name value",
Version = "Version value",
SizeInByte = 10L,
DeviceCount = 11,
Publisher = "Publisher value",
Platform = DetectedAppPlatformType.Windows,
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceManagement.DetectedApps["{detectedApp-id}"].PatchAsync(requestBody);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc device-management detected-apps patch --detected-app-id {detectedApp-id} --body '{\
"@odata.type": "#microsoft.graph.detectedApp",\
"displayName": "Display Name value",\
"version": "Version value",\
"sizeInByte": 10,\
"deviceCount": 11,\
"publisher": "Publisher value",\
"platform": "windows"\
}\
'
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
requestBody := graphmodels.NewDetectedApp()
displayName := "Display Name value"
requestBody.SetDisplayName(&displayName)
version := "Version value"
requestBody.SetVersion(&version)
sizeInByte := int64(10)
requestBody.SetSizeInByte(&sizeInByte)
deviceCount := int32(11)
requestBody.SetDeviceCount(&deviceCount)
publisher := "Publisher value"
requestBody.SetPublisher(&publisher)
platform := graphmodels.WINDOWS_DETECTEDAPPPLATFORMTYPE
requestBody.SetPlatform(&platform)
detectedApps, err := graphClient.DeviceManagement().DetectedApps().ByDetectedAppId("detectedApp-id").Patch(context.Background(), requestBody, nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
DetectedApp detectedApp = new DetectedApp();
detectedApp.displayName = "Display Name value";
detectedApp.version = "Version value";
detectedApp.sizeInByte = 10L;
detectedApp.deviceCount = 11;
detectedApp.publisher = "Publisher value";
detectedApp.platform = DetectedAppPlatformType.WINDOWS;
graphClient.deviceManagement().detectedApps("{detectedAppId}")
.buildRequest()
.patch(detectedApp);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
const detectedApp = {
'@odata.type': '#microsoft.graph.detectedApp',
displayName: 'Display Name value',
version: 'Version value',
sizeInByte: 10,
deviceCount: 11,
publisher: 'Publisher value',
platform: 'windows'
};
await client.api('/deviceManagement/detectedApps/{detectedAppId}')
.update(detectedApp);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new DetectedApp();
$requestBody->setOdataType('#microsoft.graph.detectedApp');
$requestBody->setDisplayName('Display Name value');
$requestBody->setVersion('Version value');
$requestBody->setSizeInByte(10);
$requestBody->setDeviceCount(11);
$requestBody->setPublisher('Publisher value');
$requestBody->setPlatform(new DetectedAppPlatformType('windows'));
$result = $graphServiceClient->deviceManagement()->detectedApps()->byDetectedAppId('detectedApp-id')->patch($requestBody)->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Import-Module Microsoft.Graph.DeviceManagement
$params = @{
"@odata.type" = "#microsoft.graph.detectedApp"
displayName = "Display Name value"
version = "Version value"
sizeInByte = 10
deviceCount = 11
publisher = "Publisher value"
platform = "windows"
}
Update-MgDeviceManagementDetectedApp -DetectedAppId $detectedAppId -BodyParameter $params
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(credentials, scopes)
request_body = DetectedApp(
odata_type = "#microsoft.graph.detectedApp",
display_name = "Display Name value",
version = "Version value",
size_in_byte = 10,
device_count = 11,
publisher = "Publisher value",
platform = DetectedAppPlatformType.Windows,
)
result = await graph_client.device_management.detected_apps.by_detected_app_id('detectedApp-id').patch(request_body)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 277
{
"@odata.type": "#microsoft.graph.detectedApp",
"id": "caf60db6-0db6-caf6-b60d-f6cab60df6ca",
"displayName": "Display Name value",
"version": "Version value",
"sizeInByte": 10,
"deviceCount": 11,
"publisher": "Publisher value",
"platform": "windows"
}