Skip to content
On this page

Build functions

Introduction

In this mini workshop we'll create 3 types of functions and test them locally.

Http triggered function

This type of function is started, as exptected, by a http call. You can specify the verb it responds to, the route where it is available and what parameters are expected in the querystring or in the body of the request.

Timer triggered function

A timer trigger lets you run a function on a schedule.

Queue triggered function

Use the queue trigger to start a function when a new item is received on a queue. The queue message is provided as input to the function.