0
votes

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 ?

1
Any luck @Prince?Dominic Cabral
Sorry for late reply. Yes first you have to deploy it on tomcat of Azure from there you will get the URL that needs to be added.Prince Varshney
Awesome, glad it worked! Would you mind confirming my answer?Dominic Cabral

1 Answers

1
votes

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.