Questions tagged [apim]

230 questions
0
votes
0 answers

Is it redundant to use azure api management service within vnet?

Here is a question I would like to get some expert advice on. I have a few internal services within a vnet. They are exposed to external services via apim. The apim is in the external mode(hosted outside the Vnet). My question is, do I need apim for…
Victor
  • 435
  • 2
  • 8
  • 15
0
votes
1 answer

How do Azure APIM Products behave with multiple Products without subscription required?

While going through the documentation, I can not figure out which is the behaviour in case multiple Products include the same API, and none of them requires a Subscription Key. Still, those can have different Policies, changing completely the…
froblesmartin
  • 1,527
  • 18
  • 25
0
votes
3 answers

How to restrict the access to backend API to be only accessed by the react app?

I am creating a public facing SPA web application using React js. The backend for this application are the endpoints available under Azure APIM. I would like to restrict the access to these APIM endpoints in a way that they are only accessible from…
0
votes
0 answers

manipulate response in apim outbound policies

I have SOAP service that I have converted to rest in apim and returns the response in json using the following outbound policy:
snowflakes74
  • 1,307
  • 1
  • 20
  • 43
0
votes
1 answer

Trying to implement Rate Limiting Policy on API Management in Azure

I'm trying to setup a policy within Azure APIM where I can rate limit calls to the API, but also whitelist a range of IP's so they're not stopped by the Rate Limit Policy. Ideally I want to limit the amount of calls per IP to 60 times within 60secs,…
Happy
  • 11
  • 2
0
votes
1 answer

Azure APIM import with Import-AzApiManagementApi from a File stored in folder

I was trying to import swagger json to APIM through the powershell command. its working for API which is hosted publicly with out any authentication ( ex : https://petstore3.swagger.io/api/v3/openapi.json ) , but when tried to access the swagger…
Aji
  • 423
  • 8
  • 23
0
votes
1 answer

Gnereta oauth token - log user information

is it possible to log information about which user is trying to generate an oauth token? I would like to see user login or consumerKey. I know that the login can be seen in the audit.log file when the user generates the token via grant type…
Gregory
  • 41
  • 5
0
votes
1 answer

Updating Name of Self hosted gateway in Azure APIM service

I wish to change the name of the Azure APIM Self hosted gateway, however I am unable to so from the Azure portal nor do I get anu option to update the Name. I wish to know if there is any way that we can update it using Azure Powershell or CLI. Feel…
0
votes
1 answer

Azure API management: Set different backend url for different endpoints

I have an Azure API which have multiple endpoints and it calls different backend service with different api-keys. Eg: /offer endpoint in azure apim calls : https://offerBackend/offers /offer/{id} - https://offerBackend/offers/{id} /products -…
Techie
  • 81
  • 1
  • 10
0
votes
2 answers

Azure AppGW in front of APIM without vnet

I'm in process of setting up an Azure APIM architecture. One of the requirements is to be able to handle both internal and external api's. To do so there is a nice architecture (and lots of documentation) where APIM is in a VNET and an APPGW is in…
David
  • 15
  • 3
0
votes
1 answer

Run python script in a CI/CD step

I am new to DevOps and this whole world, so I would like some help. I have an existing pipeline created. I also have a python script that I have just created, this script gets a json file, replace some stuff and replace the file content (I tested…
RNA
  • 63
  • 2
  • 8
0
votes
0 answers

Powershell to import all APIs to APIM?

Powershell script to extract all APIs, their operations and inbound policies Related to the answer found in above link... Is it possible to use this to import back into another APIM? Just curious if this is possible...
Randall C
  • 1
  • 1
0
votes
0 answers

How to enable missing charts/maps in Reports page for Azure APIM Dev Portal

There is a problem of missing charts/maps in Reports page for APIM Dev Portal for unknown reasons. DEV: (https://i.stack.imgur.com/R0LoK.png) QA: (https://i.stack.imgur.com/nHjPv.png) Unfortunately, I couldn't find any relevant official…
0
votes
1 answer

Azure APIM - import single controller from an API or split controllers from single API into different APIM APIs

I have backend APIs with multiple controllers which split up operations which are for 3rd parties, other are for frontend proxies / other micro-services and then there is an support/admin controller. I dont want all of these in the same APIM API /…
RichJ
  • 3
  • 1
0
votes
1 answer

APIM Policy to store the public key and verify against it

I need to store the issuer signing key in keyvault and then verify the JWT against it through apim policy . How to do that ?