Questions tagged [apim]

230 questions
0
votes
0 answers

Azure APIM route the incoming request based on request URL

I have a use case to route the request based on incoming url where in API URL suffix - apples/grapes Case 1: suppose an incoming request is https://fruits.com/apples/grapes/rest then I need to divert the request to backend url say:…
0
votes
1 answer

ADLS SAS token is truncated when rewriting in API Management

I have an ADLS with images that I want to display on my website. I want to expose them through APIM. I am sending the image name and SAS token in the request which I re-write in the actual backend request with the right folder structure. The policy…
Praveen Valavan
  • 107
  • 1
  • 10
0
votes
1 answer

Is there a way to tell if sign up activation email was sent successfully from Azure APIM Developer Portal?

We're using the Managed Developer Portal in Azure API Management (APIM). When signing up, a user should receive an email to confirm their account. Has anyone found a way to troubleshoot when users report not receiving an email? I haven't been able…
nosvalds
  • 100
  • 1
  • 10
0
votes
0 answers

Error evited pod on with apim run on kubernetes

I install wso2 api-manager with pattern-3 run on Kubernetes, however, the pod is evicted after pods start successfully in a short time (30 minutes). I edited the limit memory to 1GB, 2GB, 3GB, but the issue is not solved. How do i fixed it pod is…
0
votes
2 answers

How to configure Azure APIM policy to send emails in case 401 errors

I have a requirement to send alerts via emails in case if an API fails with 401 (Unauthorized access) errors. These apis use api-key for authentication. I tried to trigger a logic app from the on-error section of the Azure APIM policy but that…
Moon
  • 1
0
votes
1 answer

How to protect a web API in an APIM instance in an external mode VNet and access the web API through APIM only from the internet

I’m trying to protect a web API that is in an API Management instance that is in a subnet with NSG inbound rules definition in a VNet using Visual Studio 2022. I need help defining the network elements and connecting them together so that I may call…
0
votes
1 answer

Transformations at API Management Tool

This could be typical situation in terms of the integrating/exposing an API. We are developing an API for internal use and is to be published on the internal hosted APIM platform(APIgee), there were bunch of internal consumers interested in using it…
0
votes
0 answers

Getting authentication failed error when calling APIM API which has Product scope from postman

I have an APIM API, which is associated with a Product(Product scope). When I test the API within APIM (Test tab), everything works fine. But when I copy the same headers along with the same Authorization JWT token to Postman and test the API, I'm…
Madhu
  • 415
  • 1
  • 4
  • 15
0
votes
1 answer

Azure APIM policy.xml restricted routing

I Have two products(APIs) within azure APIM set in 2 different subscriptions (2 different domains). Currently our apim is on premium sku and can call multiple custom domains. Depending on the environments I am deploying APIM to - I would like to add…
kat
  • 79
  • 8
0
votes
0 answers

WSO2 API Manager 3.1.0 - Response Header update

I am studying Open source API manager implementation on microservices and I start with WSO2 API Manager 3.1.0 using the available documentation but many solutions mentioned in the document doesn't work. For example, I checked a forum where people…
user309686
  • 21
  • 2
0
votes
1 answer

How to add policy to Product in Azure API Management

I need help with adding policy to PRODUCT in Azure APIM. Could you please let me know how we can achieve using PowerShell/Azure Cli/ Azure DevOps?
Madhu
  • 415
  • 1
  • 4
  • 15
0
votes
1 answer

Input map Error while creating a Backend resource in APIM through C# using Pulumi

This is the sample code provided in pulumi documentation however this does throw an compilation error. https://www.pulumi.com/registry/packages/azure-native/api-docs/apimanagement/backend/ compilation error in local Please let me know any idea to…
Amaresh
  • 31
  • 3
0
votes
1 answer

Remote Debugging Azure App Service with API Management?

Is there a setting necessary to be enabled for APIM to forward remote debugging calls to its associated app service? When I portqry, the port is reported as Filtered, not Listening.
Marc George
  • 134
  • 1
  • 18
0
votes
1 answer

Azure APIM Prod and Non-Prod on single instance

Is it possible to have logical separation of Azure APIM service i.e one could work like Prod and Non-Prod at the same time?
Zara
  • 5
  • 2
0
votes
1 answer

Need to modify request payload in Azure APIM set body to send modified request body to BE

My APIM is receiving request payload in POST request - and I have to format and send to backend -- Formatted payload for BE I have to add the 2 parameters after every newreq line and append 2 new lines after GET request line. how to achive this in…