Microsoft.Management (preview:2018-01-01)

2025/09/26 • 10 new, 10 deleted methods

ManagementGroups_List (new)
Description List management groups for the authenticated user.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups
{
api-version: string ,
Cache-Control: string ,
$skiptoken: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Get (new)
Description Get the details of the management group.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
$expand: string ,
$recurse: boolean ,
$filter: string ,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_CreateOrUpdate (new)
Description Create or update a management group. If a management group is already created and a subsequent create request is issued with different properties, the management group properties will be updated.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
createManagementGroupRequest:
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (202)

{
id: string ,
type: string ,
name: string ,
properties:
{
provisioningState: enum ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Update (new)
Description Update a management group.
Reference Link ¶

⚼ Request

PATCH:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
patchGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Delete (new)
Description Delete management group. If a management group contains child resources, the request will fail.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (202)

{
id: string ,
type: string ,
name: string ,
properties:
{
provisioningState: enum ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroupSubscriptions_Create (new)
Description Associates existing subscription with the management group.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroupSubscriptions_Delete (new)
Description De-associates subscription from the management group.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
Operations_List (new)
Description Lists all of the available Management REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
CheckNameAvailability (new)
Description Checks if the specified management group name is valid and unique
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Management/checkNameAvailability
{
api-version: string ,
checkNameAvailabilityRequest:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: enum ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
Entities_List (new)
Description List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Management/getEntities
{
api-version: string ,
$skiptoken: string ,
groupName: string ,
Cache-Control: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
parent:
{
id: string ,
}
,
permissions: enum ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_List (removed)
Description List management groups for the authenticated user.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups
{
api-version: string ,
Cache-Control: string ,
$skiptoken: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Get (removed)
Description Get the details of the management group.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
$expand: string ,
$recurse: boolean ,
$filter: string ,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_CreateOrUpdate (removed)
Description Create or update a management group. If a management group is already created and a subsequent create request is issued with different properties, the management group properties will be updated.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
createManagementGroupRequest:
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (202)

{
id: string ,
type: string ,
name: string ,
properties:
{
provisioningState: enum ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Update (removed)
Description Update a management group.
Reference Link ¶

⚼ Request

PATCH:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
patchGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
roles:
[
string ,
]
,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
id: string ,
name: string ,
displayName: string ,
}
,
}
,
children:
[
{
type: enum ,
id: string ,
name: string ,
displayName: string ,
roles:
[
string ,
]
,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroups_Delete (removed)
Description Delete management group. If a management group contains child resources, the request will fail.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (202)

{
id: string ,
type: string ,
name: string ,
properties:
{
provisioningState: enum ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroupSubscriptions_Create (removed)
Description Associates existing subscription with the management group.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
ManagementGroupSubscriptions_Delete (removed)
Description De-associates subscription from the management group.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
Operations_List (removed)
Description Lists all of the available Management REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
CheckNameAvailability (removed)
Description Checks if the specified management group name is valid and unique
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Management/checkNameAvailability
{
api-version: string ,
checkNameAvailabilityRequest:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: enum ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}
Entities_List (removed)
Description List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Management/getEntities
{
api-version: string ,
$skiptoken: string ,
groupName: string ,
Cache-Control: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
parent:
{
id: string ,
}
,
permissions: enum ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details: string ,
}
,
}