"Important update: Eligibility for Quota Tier upgrade" email

AR_MS_Training 0 Reputation points
2026-08-27T21:25:34.15+00:00

I received the following email, but the link to maintain the current Free tier does not work. What do I have to do? I don't want to be upgraded to Tier 1 at this time.

Thank you.

Important update: Eligibility for Quota Tier upgrade

We are pleased to inform you that, based on your recent usage and account standing, your subscription 17496006-39ea-46d1-8fbf-612fe2d296fd is now eligible for an upgrade from your current Tier (Free Tier) to the next Tier (Tier 1) within our AI Services platform.

What does this mean for you?

  • You will gain access to the enhanced benefits and features associated with the next Tier.
  • The upgrade will be processed automatically unless you choose to remain at your current Tier.

What do you need to do?

  • If you wish to remain at your current Tier (Free Tier), please follow the link within the next 3 days.
  • If no action is taken, your subscription 17496006-39ea-46d1-8fbf-612fe2d296fd will be automatically upgraded to Tier 1.

If you have any questions or would like more information about the Tier upgrade process, please contact our support team. Thank you for being a valued customer.

Important update: Eligibility for Quota Tier upgrade

We are pleased to inform you that, based on your recent usage and account standing, your subscription 17496006-39ea-46d1-8fbf-612fe2d296fd is now eligible for an upgrade from your current Tier (Free Tier) to the next Tier (Tier 1) within our AI Services platform.

What does this mean for you?

  • You will gain access to the enhanced benefits and features associated with the next Tier.
  • The upgrade will be processed automatically unless you choose to remain at your current Tier.

What do you need to do?

  • If you wish to remain at your current Tier (Free Tier), please follow the link within the next 3 days.
  • If no action is taken, your subscription 17496006-39ea-46d1-8fbf-612fe2d296fd will be automatically upgraded to Tier 1.

If you have any questions or would like more information about the Tier upgrade process, please contact our support team. Thank you for being a valued customer.

Microsoft Foundry
Microsoft Foundry

A unified Azure platform for creating and managing AI models, agents, and applications with built‑in enterprise security, monitoring, and governance

0 comments No comments

1 answer

Sort by: Most helpful
  1. TP 163.1K Reputation points Volunteer Moderator
    2026-08-27T22:24:30.85+00:00

    Hi,

    You can opt out by setting tierUpgradePolicy to NoAutoUpgrade. To do this you may use Azure Cloud Shell (Bash mode) and running commands similar to below:

    subscription_id="yourSubscriptionID"
    az rest --method patch \
      --url "https://management.azure.com/subscriptions/$subscription_id/providers/Microsoft.CognitiveServices/quotaTiers/default?api-version=2025-10-01-preview" \
      --body '{"properties": {"tierUpgradePolicy": "NoAutoUpgrade"}}'
    

    If you want to check your current settings you may run commands similar to below:

    subscription_id="yourSubscriptionID"
    az rest --method get \
      --url "https://management.azure.com/subscriptions/$subscription_id/providers/Microsoft.CognitiveServices/quotaTiers/default?api-version=2025-10-01-preview"
    

    Microsoft Foundry Quota Tiers - Can I opt out of auto upgrades?

    https://learn.microsoft.com/en-us/azure/foundry/openai/quotas-limits?tabs=bash%2Ctier1#can-i-opt-out-of-auto-upgrades

    Please click Accept Answer and upvote if the above was helpful.

    Thanks.

    -TP

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.