Posts

Showing posts with the label Azure

Azure Function to Read Incoming Message in Twilio

Image
  Introduction In this tutorial, we will learn how to read incoming message in Twilio and respond to webhooks using Azure Functions. We will learn what is webhooks, how to set up an Azure Function, and then use Azure Function app to respond to a Twilio SMS webhook and create a record in dynamic 365 in case entity when new message received. Prerequisites: A Twilio account.  An Azure account with an active subscription. Dynamic365 subscription. What is webhook? Webhook is an HTTP request triggered by an event in a source system and sent to a destination system. To enable this, you provide the source system with a URL where it can send the HTTP request. A typical webhook setup involves the following: A destination system that needs to be notified about a specific event. A source system that sends a notification to the destination system when the event occurs. This system uses the provided webhook URL to make the HTTP request. In your a...

Connect to Dynamics CRM from Azure Function

Image
  In today's blog, we'll connect to Dataverse using an Azure function that utilizes the.Net core 6.2 framework. The prerequisites are listed below. ·         Create a new Dynamics 365 application in Azure. ·         Make that the newly created Azure Function builds appropriately. ·         To establish a connection with the Dataverse, use this sample of code. Create a new Dynamics 365 application in Azure:   We need to register the Dynamics 365 Web API on Azure and use it with an application user. This is particularly useful for those working with custom APIs in CRM.   To achieve this, you will need the following components. ·         Azure portal access ·         Application user ·         CRM Admin user Log in to the Azure portal, se...