Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Sean O'Neil
Thanks for the extra detail — that helps narrow things down. It’s fairly common after a Free Trial > Pay-as-You-Go upgrade for the billing side to complete while the quota backend still sees the old offer for a while (or never fully flips). The QuotaNotAvailableForResource / “Request failed” response is the usual symptom when that happens.
How to confirm the subscription is truly Pay-as-You-Go
- Portal check
- Go to Subscriptions > select the subscription.
- Look at the Offer column / Overview blade. It should show Pay-As-You-Go (or the equivalent Microsoft Online Services Program / Microsoft Customer Agreement offer).
- Also check that Spending limit is Off (or no longer present).
- CLI check
You want something like:az account show --query "{name:name, state:state, spendingLimit:spendingLimit, quotaId:quotaId}" -o json- "state": "Enabled"
- "spendingLimit": "Off" (or absent)
- "quotaId" not starting with FreeTrial_...
If the portal still shows Free Trial / spending limit On, or the CLI still returns a FreeTrial quotaId, the upgrade hasn’t fully propagated. In that case:
- Sign out completely, clear browser cache (or use an InPrivate/Incognito window), and sign back in.
- Double-check that a valid payment method and any required tax/identity info are complete under Cost Management + Billing.
- If it still looks wrong after a few hours, open a Billing / Subscription management support request (these are free) and ask them to complete the offer switch. Reference: https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/upgrade-azure-subscription
Once the offer is confirmed as Pay-as-You-Go
Retry the App Service quota request the same way as before (Quotas > App Service > region > pencil icon next to F1 / P0v4 / etc.). Small increases are usually auto-approved quickly on a true PAYG subscription.
If the quota request still returns QuotaNotAvailableForResource, open a free support ticket:
- Issue type: Service and subscription limits (quotas)
- Quota type: Function or Web App (Windows and Linux)
- Include the exact error, your subscription ID, the regions/SKUs you need, and mention that this was a Free Trial that was upgraded last week.
Reference:
https://learn.microsoft.com/en-us/rest/api/quota/
https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/upgrade-azure-subscription
If the answer is helpful, Please do click "Accept the answer” and Yes, this can be beneficial to other community members.
If you have any other questions, let me know in the "comments" and I would be happy to help you