Questions tagged [apim]

230 questions
0
votes
1 answer

Azure API Management with internal backend API

I have an internal service that is deployed on a Windows VM within a virtual network and doesn't have access to the internet. This service has API endpoints that I would like to expose to our clients, the service itself doesn't offer any…
0
votes
1 answer

Will API Management automatically switch over to disaster discovery site that outside of configured region?

I have deployed API Management in EU region and what happens when EU region goes down? Will API Management automatically switch over to disaster discovery site other regions? Can we control/specify an EU data recovery center?
Cristiano
  • 21
  • 1
0
votes
0 answers

check for null— Jtoken

I have been facing an issue while setting a variable in azure policy. What I have to do is to set currency based on the responses from the backend response I (status 200) { "currency" : "usd", "amount" : 500 } Response II (status 200) { "status"…
xt1135
  • 3
  • 2
0
votes
1 answer

Store some values between requests

I have an API in Azure APIM. I want to persist a value between multiple client calls. Basically, this API is like a proxy where the actual business logic is in a different back-end API of a different system. Clients are routed through Azure APIM.…
Jijo Joseph
  • 127
  • 6
0
votes
1 answer

Terraform Azure setup self hosted gateway hostname

How is it possible to provision Hostnames for self hosted gateways in Azure API Management? Terraform shows how to add a new gateway but not how to configure the…
sampa
  • 535
  • 4
  • 27
0
votes
2 answers

How to restrict access for publish Azure Functions to API Management?

I have a public Azure function. I can just visit its url and I see the application. Is it possible to restrict this so that only the API Management service can access this function? I don't want to make the function private (Vnet) because then I…
DenCowboy
  • 13,884
  • 38
  • 114
  • 210
0
votes
2 answers

Unable to deploy WSO2 APIM in Minikube Kubernetes cluster

I'm trying to deploy WSO2 APIM on Kubernetes using the pattern-1 described on the github page https://github.com/wso2/kubernetes-apim. I have added my minikube ip to my etc/hosts file as follows: [minikube ip] am.wso2.com gateway.am.wso2.com I'm…
Ruby
  • 368
  • 1
  • 9
0
votes
1 answer

Is it possible to control the content on Developer Portal in Azure API Management based on role user?

I want to control the content on the Developer Portal on Azure API Management base on role user
Hoaitri Ho
  • 29
  • 1
  • 1
0
votes
1 answer

Where is JWT Validation Supposed to happen in APIM+AZ Function stacks?

I'm unclear on whether I've missed something with the way API Management Gateway/Azure Function communications work. Initial requests are supposed to contain a JWT which contains server-signed assertions related to user roles. Within APIM/Azure…
testUser12
  • 171
  • 2
  • 9
0
votes
1 answer

Terraform - Azure - Extract API from one resource group and import into another resource group

I have 5 different APIs in my Dev environment. This environment was built manually. However, for the subsequent environments like Test, Pre-Prod, etc.. Terraform is being used. Since I need to create each of the APIs in the subsequent environments,…
Scorpio
  • 77
  • 1
  • 2
  • 10
0
votes
1 answer

APIM liquid How to check that the coming request include specific header?

I am trying to write an inbound policy inside one operation in an API in Azure API Management. In this policy I want to check if the incoming request has a specific header or not. I am quite a beginner in liquid and in writing policies. But I have…
ibda
  • 376
  • 3
  • 15
0
votes
1 answer

Delete API - TriggerDeleteAPIPipeline.Run failed

I'm currently having problems when trying to delete an API. Basically I followed all steps detailed here: https://cdas.azure.chevron.com/api-and-integration.wiki/API-Products/Delete-API-Utility.html. But when I hit the submit button at the last step…
0
votes
1 answer

Update Azure APIM Name (Api.Id) after cloning using Azure Portal?

Is it possible to manually change the API Name (a.k.a. Api.Id) of an Azure API after it has been created to something else (I understand that it has to be unique). When creating a new API, the name (Api.Id) is user-friendly (e.g. same as the display…
Alex
  • 285
  • 4
  • 11
0
votes
1 answer

Azure DevOps (az apim nv create) cant able to create variable dynamically

I'm trying to create multiple values using "az apim nv create" command using loop, but its not working. with the single command (without using variable in --value) we can able to create, but the same is not working when we use variable in…
karthikN
  • 25
  • 8
0
votes
1 answer

Azure APIM: How to change backend URI

I have defined an API in Azure APIM. I have added one method /users. I want that method to be translated in the backend service as /createUsers. So frontend API: POST https://xxx.domain.com/abc/dev/service/users…