What does my Azure APIM Product look like to external viewers
As a followup to the other article I may also want to look at what the API looks like to the subscriber of a product. Again we have the azure portal or the APIM developer portal which are ok but its not that easy for you to see the paths in a way which gives you a good simple view across your API's within the product. Bring in another little powershell script below $resourceGroupName = '[Resource Group Here]' $apimServiceName = '[APIM Name Here]' $apimContext = New-AzApiManagementContext -ResourceGroupName $global:resourceGroupName -ServiceName $global:apimServiceName Write-Host 'APIM =' $apimContext.ServiceName $apimInstance = Get-AzApiManagement -ResourceGroupName $apimContext.ResourceGroupName -Name [...]