Hi @Sander van den Hoed,
Currently, there's no direct option to transfer a domain out of Azure App Service to another registrar within the Azure portal.
However here is a workaround you can use to achieve your scenario:
Transferring of domain out of Azure (not a registrar) to another registrar is supported and you may currently do so via API and PowerShell. You will need to get an authorization code which you can take to the registrar of choice to proceed with transferring out of your domain.
You won’t be able to transfer your domain within 60 days of these events:
- New domain registration
- Transfer between different registrars
- Change to registrant contact information
Construct a PUT request to the following endpoint:
https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/transferOut?api-version=2024-04-01
You can execute this request via PowerShell.
Invoke-AzRestMethod -Path "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/transferOut?api-version=2024-04-01" -Method PUT
Make sure you replace the placeholders with your actual Subscription Id, resource group name and domine name.
The response from the API will continue the authcode
, which is your EPP code.
Kindly refer to the below documentation for better understanding:
https://azure.github.io/AppService/2021/09/22/2021-Managing-ASD.html#exceptions-for-transfering-domain-out
If the answer is helpful, please click Accept Answer and kindly upvote it so that other people who faces similar issue may get benefitted from it.
Let me know if you have any further Queries.