Hi jo Eber,
Welcome to the Microsoft Q&A Platform! Thank you for reaching out regarding your query on creating a new azure function in Azure portal without getting an error.
Please refer the below document for common runtime issues after deployment.
common runtime issues after deployment
If you woule like to check if the function exists at the backend, use Azure Cli and run the below command:
az functionapp function list --name <FunctionAppName> --resource-group <ResourceGroupName>
Delete the problematic function and recreate it using a different method:
- Use VS Code with the Azure Functions extension.
- Deploy the function using Azure CLI or ARM templates instead of the portal.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.