Microsoft Azure - Creating an HTTP Trigger with Azure Logic Apps Last Updated : 30 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we will look into how to set up an HTTP Request Trigger that could be used in an Azure Logic App. These triggers get activated whenever an event occurs. The event needs to be decided by the trigger creator. Follow the below steps to create an HTTP trigger with Azure Logic Apps: Step 1: If we want to create a Logic App, the first thing we'll do is click on "Create Resource" in the Azure Portal. Step 2: Now in the Marketplace, we'll type in Logic App and select it. Step 3: Now click on that, and hit "Create." Step 4: We need to get our Logic App a name. Then we'll select the resource group that we want to put this in. Then we'll select the Region and we'll hit the "Create" button. Step 5: Now that our resource is created, we'll need to click on the "Go to Resource" notification. Now, we are taken it to an area where we could get started creating Logic Apps using some of these common triggers. Here we want to trigger our Logic App with HTTP Requests. So we are going to select the same. Step 6: Now we can start editing our HTTP Request. We could use the JSON schema to validate some of our HTTP Requests. We will create a new schema here that we are going to use. We want to call this message, and we'll hit "Submit" to generate a new JSON Schema. Step 7: Now, we'll copy it to the clipboard. Back inside of Logic Apps, we'll hit the "Edit" button and we'll paste in the "Requests Body JSON Schema." Whenever we send over an HTTP Request, Logic Apps will use a schema to validate that the payload is as it should be. Now we can continue working with my Logic App by adding things like more actions and conditions. That's how easy it is for you to set up an HTTP Request Trigger that's going to be able to start your Logic App workflow. Comment More infoAdvertise with us Next Article Microsoft Azure - Creating an HTTP Trigger with Azure Logic Apps K kumaripunam984122 Follow Improve Article Tags : Microsoft Azure DevOps Cloud-Computing azure-cloud-instances Similar Reads What Is Cloud Computing ? Types, Architecture, Examples and Benefits Nowadays, Cloud computing is adopted by every company, whether it is an MNC or a startup many are still migrating towards it because of the cost-cutting, lesser maintenance, and the increased capacity of the data with the help of servers maintained by the cloud providers. Cloud Computing means stori 14 min read DevOps Tutorial DevOps is a combination of two words: "Development" and "Operations." Itâs a modern approach where software developers and software operations teams work together throughout the entire software life cycle, from planning and coding to testing, deploying, and monitoring.The main idea of DevOps is to i 9 min read Virtualization in Cloud Computing and Types Virtualization is a way to use one computer as if it were many. Before virtualization, most computers were only doing one job at a time, and a lot of their power was wasted. Virtualization lets you run several virtual computers on one real computer, so you can use its full power and do more tasks at 12 min read Amazon Web Services (AWS) Tutorial Amazon Web Service (AWS) is the worldâs leading cloud computing platform by Amazon. It offers on-demand computing services, such as virtual servers and storage, that can be used to build and run applications and websites. AWS is known for its security, reliability, and flexibility, which makes it a 13 min read Docker Tutorial Docker is a tool that simplifies the process of developing, packaging, and deploying applications. By using containers, Docker allows you to create lightweight, self-contained environments that run consistently on any system, minimising the time between writing code and deploying it into production. 7 min read What is Docker? Have you ever wondered about the reason for creating Docker Containers in the market? Before Docker, there was a big issue faced by most developers whenever they created any code that code was working on that developer computer, but when they try to run that particular code on the server, that code 12 min read Cloud Based Services Cloud Computing means using the internet to store, manage, and process data instead of using your own computer or local server. The data is stored on remote servers, that are owned by companies called cloud providers such as Amazon, Google, Microsoft). These companies charge you based on how much yo 11 min read Complete DevOps Roadmap - Beginner to Advanced DevOps is considered a set of practices that combines the abilities of Software Development i.e Dev and IT Operations i.e Ops together, which results in delivering top-notch quality software fastly and more efficiently. Its focus is to encourage communication, collaboration, and integration between 8 min read What is CI/CD? CI/CD is the practice of automating the integration of code changes from multiple developers into a single codebase. It is a software development practice where the developers commit their work frequently to the central code repository (Github or Stash). Then there are automated tools that build the 10 min read Kubernetes Tutorial Kubernetes is an open-source container management platform that automates the deployment, management, and scaling of container-based applications in different kinds of environments like physical, virtual, and cloud-native computing foundations. In this Kubernetes Tutorial, you are going to learn all 8 min read Like