Hello Ankit Rathod,
I understand that You’re running into a known limitation with Azure AI Face Service in the UAE North region, especially when using the Free (F0) tier.
Face Detection Availability
Currently, face detection (used for photo tagging) is not supported in the UAE North region on the Free tier, which is why you’re receiving the 403 – Unsupported Feature error. Even though the Face API resource itself can be created in this region, certain capabilities like face detection are region- and tier-restricted. To use face detection, the service must be deployed in a region where this feature is enabled (typically on paid tiers).
Using Another Region
If you deploy Azure AI Face Service in a different supported region and call that endpoint:
The image data is transmitted to that region for processing.
The service processes the image to extract face coordinates and related metadata.
The image itself is not stored after processing and is discarded immediately, unless explicitly configured otherwise (e.g., storing face features like faceId, which are temporary).
However, this does mean the image leaves the UAE North region, which conflicts with strict compliance or data residency requirements that mandate all processing remain within the region.
Compliance Considerations
Azure does not currently offer a way to force Face API face detection to run entirely within UAE North if the feature is not supported there. As a result:
- Using another region violates strict in-region processing requirements, even though the image is only processed transiently.
- This limitation is service-side and cannot be overridden through configuration.
Recommended Alternatives
If data residency is non-negotiable, consider:
- Building a custom face detection model using Azure Machine Learning in UAE North, ensuring all inference and processing stay within the region.
- Evaluating Azure AI Vision (non-identification scenarios) if basic face bounding boxes (without identity features) meet your tagging requirements and are supported in the region.
Please refer this
I Hope this helps. Do let me know if you have any further queries.
If this answers your query, please do click Accept Answer and Yes for was this answer helpful.
Thank you!