
Implement task processing logic by using Azure Functions Part 3 – Create a function that’s triggered by an HTTP request
Now let’s create a new function inside our function project.
func new --name Echo --template "HTTP Trigger"

Next create the code as instructed in the lab documents here.

Now it’s time to test your local Azure Function!
Run the command below and go to your function adress.
func start
In postman type the Function App url and content a message and watch your Functionapp respond!

Now go ahead and finish the lab on your own creating a timer and other great functions.
Great work!