title | description | author | ms.author | ms.date | ms.topic | ms.service | services | manager |
---|---|---|---|---|---|---|---|---|
Trigger Azure Functions using webhooks in Azure IoT Central |
Create a function app that runs each time a rule is triggered in Azure IoT Central. |
viv-liu |
viviali |
09/17/2018 |
conceptual |
iot-central |
iot-central |
peterpr |
This topic applies to builders and administrators.
Use Azure Functions to run serverless code on the webhook output from IoT Central rules. You don't have to provision a VM or publish a web app to use Azure Functions, but instead you can run this code serverlessly. Use Azure Functions to transform the webhook payload before sending it to its final destination such as a SQL database or Event Grid.
- If you don't have an Azure subscription, create a free account before you begin.
-
Expand your function app and click the + button next to Functions. If this function is the first one in your function app, select Custom function. This displays the complete set of function templates.
-
In the search field, type "generic" and then choose your desired language for the generic webhook trigger template. This topic uses a C# function.
-
In your new function, click </> Get function URL, then copy and save the value. You will use this value to configure the webhook.
-
In IoT Central, navigate to the rule that you want to connect to your function app.
-
Add a webhook action. Enter a Display name and paste in the function URL you copied earlier into Callback URL.
-
Save the rule. Now when the rule is triggered, the webhook will invoke the function app to run. In your function app, you can click Monitor to see the function's invocation history. You can use App Insights or the classic view to look at the history.
For more information, visit the Azure Functions article about creating a function triggered by a generic webhook.
Now that you have learned how to set up and use webhooks, the suggested next step is to explore building workflows in Microsoft Flow.