user9463688
user9463688

Reputation:

How to wrap an asp.net WebApi project with azure API management?

I am having a Web API project in asp.net and this project is hosted on Azure web app services .Azure endpoint of the api works . How can i wrap this api under azure api management ?

Current setup

Asp.net web Api project > Hosted in azure web app services

I tried to add the api in API management via blank and open api specification.

I would expect the Azure API Management could connect to my web app service where my asp.net web api project is hosted.

Upvotes: 0

Views: 211

Answers (2)

Vitaliy Kurokhtin
Vitaliy Kurokhtin

Reputation: 7810

Alternative to Ketan's approach is to configure API manually using "Blank API" option. where you'll need to specify your App's base URL. You will be required later on to create all operations manually.

Upvotes: 0

Ketan
Ketan

Reputation: 1550

Deploy your Web API to Azure App Service API App instead of App Service Web App. You will be able to import the API's directly from the UI. Here is the doc.

enter image description here

enter image description here

Upvotes: 0

Related Questions