Edit

Create or delete Azure Quota Groups to manage quota for a group of subscriptions

An Azure Quota Group is an Azure Resource Manager (ARM) object that can be used to manage quota at the group level. This object can self-distribute quota between subscriptions added to the group.

Considerations

  • Creating or deleting Quota Groups requires the GroupQuota Request Operator role on the Management Group.
  • All subscriptions must be removed from your Quota Group before deletion.

Create Quota Groups

Create a Quota Group object under a Management Group.

To create a Quota Group using the REST API, make a PUT request to the following endpoint:

PUT https://management.azure.com/providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Quota/groupQuotas/{groupquota}?api-version=2025-03-01

{
  "properties": {
    "displayName": "GQdemo"
  }
}

The following example uses the az rest command:

az rest --method put --url https://management.azure.com/providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Quota/groupQuotas/{groupquota}?api-version=2025-03-01 --body '{
  "properties": {
    "displayName": "GQdemo"
  }
}'

Sample response:

{
  "id": "/providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Quota/groupQuotas/{groupquota}",
  "name": "{groupquota}",
  "properties": {
    "provisioningState": "ACCEPTED"
  },
  "type": "Microsoft.Quota/groupQuotas"
}

Delete Quota Groups

All subscriptions must be removed from a Quota Group before deletion.

To delete a Quota Group using the REST API, make a DELETE request to the following endpoint:

DELETE https://management.azure.com/providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Quota/groupQuotas/{groupQuotaName}?api-version=2025-03-01