@Sawyer Schmitt
Welcome to Microsoft Q&A Platform!
Thank you for reaching out! I understand that you're encountering a 404 error when trying to call your Azure Function from Power Automate. Based on what you’ve described, here are a few quick checks that might help resolve the issue:
- Verify that the URL you are using to invoke the function is correct. Make sure that you are using the correct hostname, function name, and any required query parameters or route parameters.
- Check that the function is deployed and running correctly. You can do this by navigating to the Azure portal and checking the status of the function app. If the function app is not running, you may need to start it manually.
- Check the function's code to ensure that it is correctly configured to handle HTTP requests. Make sure that the function is listening for HTTP requests on the correct route and that it is returning a valid HTTP response.
- Check the logs for the function to see if there are any error messages or exceptions that could be causing the 404 error. You can view the logs in the Azure portal or by using a tool like Azure Functions Core Tools. You could refer the below documentation on how to deal with 404 Error How to troubleshoot Azure Functions HTTP Trigger 404 Error?
Please let me know how it goes or if you need further assistance. I’d be happy to help!