A Microsoft offering that enables tracking of cloud usage and expenditures for Azure and other cloud providers.
Hello Hari Vinod
You have below methods to find your subscription type:
Method 1: Azure Portal (Easiest)
- Sign in to the Azure Portal.
- Search for Subscriptions in the top search bar and select it.
- Select the subscription you want to check.
- On the Overview page, look for the Offer (or Offer type) field under the subscription details.
- Free Trial → Offer ID:
MS-AZR-0044P - Pay-As-You-Go → Offer ID:
MS-AZR-0003P
- Free Trial → Offer ID:
- Repeat for each subscription.
Method 2: Azure CLI: Run the below Command:
az account list --query "[].{Name:name, State:state, OfferType:offerType}" --output table
Method 3: Azure PowerShell:
Get-AzSubscription | Format-List Name, State, SubscriptionPolicies
The QuotaId in the output indicates the offer type (e.g., FreeTrial_xxxx or PayAsYouGo_xxxx).
Reference:
- Change your Azure subscription to a different offer – Microsoft Learn
- Billing accounts and scopes in the Azure portal – Microsoft Learn
Since each subscription has its own offer type, you just need to check the Offer field individually for both subscriptions in the portal.
Thanks,
Suchitra.