An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hi @Felix K
The HTTP 403 response ("Your resource has been temporarily blocked because we detected unusual behavior") is typically an automated protection mechanism triggered by Azure OpenAI. Unfortunately, the block cannot be cleared from the client side.
To help identify the cause, I'd recommend checking the following:
- Review your application's request patterns for sudden spikes, high concurrency, or retry loops that may have been interpreted as unusual behavior.
- Verify that your application is respecting your deployment's rate limits (TPM/RPM) and is using exponential backoff for 429/5xx responses instead of aggressive retries.
- Review recent prompts and completions to ensure they comply with the Azure OpenAI Content Policy, as repeated policy-triggering requests may also result in a temporary block.
If the resource remains blocked after reducing traffic and verifying your workload, you'll need to contact Microsoft Support (or request assistance from a Microsoft moderator if you're using a support plan that doesn't allow ticket creation). Include:
- Resource name and region
- Subscription ID
- Timestamp(s) of the failures (UTC)
- x-ms-client-request-id or apim-request-id from the failed requests
- A brief description of your workload and recent changes
These details allow the product team to review the block and determine whether the resource can be unblocked. Similar cases on Microsoft Q&A have required backend investigation by the Azure OpenAI team.
Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.