Prince Varshney
Prince Varshney

Reputation: 119

Azure API Management Services API Create

I am new to AZure , I am just trying the few services of Azure. So, I have created one REst Service Application and now I want to add it in Azure APi Management Service. Its asking for Web Public API URL/Suffix . How I will get it ?

Upvotes: 0

Views: 67

Answers (1)

Dominic Cabral
Dominic Cabral

Reputation: 962

In the Azure API Management, the suffix is your public facing URI. It appends to https://myAPIexampleManagement.azure-api.net/.

enter image description here

In this case for developers to access your service which is located at http://my.backend.service.io (Your REST application) they would have to address to https://myAPIexampleManagement.azure-api.net/root

In conclusion, your Web API URL suffix can be whatever you want it to be.

Upvotes: 1

Related Questions