Posts

Showing posts from May, 2023

Web API Using Power Apps Custom Connector

Image
  In this tutorial, we will discuss how to create ASP .Net Web application and use this web API in power app using custom connector. 1.      Create a new ASP .Net Web application project using Visual Studio 2.      Build, Deploy & Secure a Web API in Azure 3.      Connect API To Power Apps Using Custom Connector   1.      Create a new ASP .Net Web application project using Visual Studio Open the visual studio 2019 and select ASP.NET web application (.Net Framework) and give the project name and click on Create. On the next screen as shown below screen short select Web API and click on create. Add a new empty controller to the project. Right click on the “Controllers” folder & select Add -> Controller -> Web API 2 Controller -Empty. Name this "ProductsController" as shown in below screen shorts. The Project structure look like below format. Next step right click on the “Models” folder & select Add -> cs file-> and name it as “ProductsControl