Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Create a new managedAppOperation 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) |
DeviceManagementApps.ReadWrite.All |
Delegated (personal Microsoft account) |
Not supported. |
Application |
DeviceManagementApps.ReadWrite.All |
HTTP Request
POST /deviceAppManagement/managedAppRegistrations/{managedAppRegistrationId}/operations
Request body
In the request body, supply a JSON representation for the managedAppOperation object.
The following table shows the properties that are required when you create the managedAppOperation.
Property |
Type |
Description |
displayName |
String |
The operation name. |
lastModifiedDateTime |
DateTimeOffset |
The last time the app operation was modified. |
state |
String |
The current state of the operation |
id |
String |
Key of the entity. |
version |
String |
Version of the entity. |
Response
If successful, this method returns a 201 Created
response code and a managedAppOperation object in the response body.
Example
Request
Here is an example of the request.
POST https://graph.microsoft.com/v1.0/deviceAppManagement/managedAppRegistrations/{managedAppRegistrationId}/operations
Content-type: application/json
Content-length: 159
{
"@odata.type": "#microsoft.graph.managedAppOperation",
"displayName": "Display Name value",
"state": "State value",
"version": "Version value"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new ManagedAppOperation
{
OdataType = "#microsoft.graph.managedAppOperation",
DisplayName = "Display Name value",
State = "State value",
Version = "Version value",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceAppManagement.ManagedAppRegistrations["{managedAppRegistration-id}"].Operations.PostAsync(requestBody);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
mgc device-app-management managed-app-registrations operations create --managed-app-registration-id {managedAppRegistration-id} --body '{\
"@odata.type": "#microsoft.graph.managedAppOperation",\
"displayName": "Display Name value",\
"state": "State value",\
"version": "Version value"\
}\
'
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewManagedAppOperation()
displayName := "Display Name value"
requestBody.SetDisplayName(&displayName)
state := "State value"
requestBody.SetState(&state)
version := "Version value"
requestBody.SetVersion(&version)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
operations, err := graphClient.DeviceAppManagement().ManagedAppRegistrations().ByManagedAppRegistrationId("managedAppRegistration-id").Operations().Post(context.Background(), requestBody, nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ManagedAppOperation managedAppOperation = new ManagedAppOperation();
managedAppOperation.setOdataType("#microsoft.graph.managedAppOperation");
managedAppOperation.setDisplayName("Display Name value");
managedAppOperation.setState("State value");
managedAppOperation.setVersion("Version value");
ManagedAppOperation result = graphClient.deviceAppManagement().managedAppRegistrations().byManagedAppRegistrationId("{managedAppRegistration-id}").operations().post(managedAppOperation);
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 managedAppOperation = {
'@odata.type': '#microsoft.graph.managedAppOperation',
displayName: 'Display Name value',
state: 'State value',
version: 'Version value'
};
await client.api('/deviceAppManagement/managedAppRegistrations/{managedAppRegistrationId}/operations')
.post(managedAppOperation);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Models\ManagedAppOperation;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new ManagedAppOperation();
$requestBody->setOdataType('#microsoft.graph.managedAppOperation');
$requestBody->setDisplayName('Display Name value');
$requestBody->setState('State value');
$requestBody->setVersion('Version value');
$result = $graphServiceClient->deviceAppManagement()->managedAppRegistrations()->byManagedAppRegistrationId('managedAppRegistration-id')->operations()->post($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.Devices.CorporateManagement
$params = @{
"@odata.type" = "#microsoft.graph.managedAppOperation"
displayName = "Display Name value"
state = "State value"
version = "Version value"
}
New-MgDeviceAppManagementManagedAppRegistrationOperation -ManagedAppRegistrationId $managedAppRegistrationId -BodyParameter $params
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.managed_app_operation import ManagedAppOperation
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = ManagedAppOperation(
odata_type = "#microsoft.graph.managedAppOperation",
display_name = "Display Name value",
state = "State value",
version = "Version value",
)
result = await graph_client.device_app_management.managed_app_registrations.by_managed_app_registration_id('managedAppRegistration-id').operations.post(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 201 Created
Content-Type: application/json
Content-Length: 272
{
"@odata.type": "#microsoft.graph.managedAppOperation",
"displayName": "Display Name value",
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
"state": "State value",
"id": "f2867b06-7b06-f286-067b-86f2067b86f2",
"version": "Version value"
}