Questions tagged [apim]
230 questions
1
vote
2 answers
How to stop sending origin IP with Azure Api Management Gateway
I'm fiddling a bit with Azure API Management Gateway to see if it would fit our purpose.
It was quite simple to add an API from our ERP application (Saas app with IP whitelisting our Office locations) and I'm able to call it from within our…

marcdb
- 13
- 5
1
vote
1 answer
Azure APIM-Not able to access json body values in liquid template
I'm trying to build an API in azure and trying to modify the incoming json request using liquid template via set body policy. But the json elements are coming as null
Incoming json request
{
"GetOrderDetailsResponse": {
"OrderId": 1,
…

Unicorn
- 11
- 1
1
vote
3 answers
Is there a way to programmatically consume a REST API deployed in Azure APIM using Azure B2C?
Is there a way to programmatically authenticate and get the tokens without having to login into an interface. We plan to consume our API from a process, and not from the use case in which a user authenticates first via a login screen. How do we…

Pedro Reinoso
- 91
- 1
- 4
1
vote
1 answer
Can't access attributes on a primitive-typed value (string)
I try to whitelist my apim public ips over my azure function :
apim.tf
data "azurerm_api_management" "main" {
name = "my-apim"
resource_group_name = "my-rg"
}
output "apim_ip" {
value =…

Will
- 1,792
- 2
- 23
- 44
1
vote
1 answer
Unable to convert Microsoft.WindowsAzure.ApiManagement.Proxy.Gateway.PipelineResponse type to string type
I have APIM policy where I am using following policy

pankaj singh
- 95
- 10
1
vote
1 answer
Azure APIM and Websocket JWT Validation
I have an Azure API Management (APIM) (Basic) service set up to authenticate my JWT tokens over HTTP query connections via the validate-jwt plugin, and that works fine. I would like to do the same JWT token validation using a WebSocket connection…

BarryM
- 176
- 9
1
vote
0 answers
APIM Policy Deployment
I'm trying to automate an APIM policy deployment via Azure devops. The policy uses a client id & client secret to generate a bearer token for CRM. I've tried a number of ways of deploying the policy, ARM template, Azure Devops plugin from here…

bristows
- 736
- 1
- 7
- 22
1
vote
2 answers
Azure API Management (APIM) - API x-functions-key not in hearder
I have a Azure Function App I recently imported into the Azure APIM using "az apim api import" cli command. This will be part of the release pipeline. So far, the imported API is working during my tests. During my test, I need to manually include…

Ultra GC
- 311
- 4
- 15
1
vote
0 answers
Azure API Management Self-hosted Gateway for Openshift
Does MS offer Azure API Management Self-hosted Gateway version specifically certified to deploy on Openshift.
I have noticed that many vendors provide product version that is enterprise tested and certified to deploy on Openshift PaaS.
Thanks
Sudhi

sudhindra bhatt
- 11
- 1
1
vote
2 answers
"404 - Resource not found" when query OData v2 with empty key field
I have an SAP CDS View exposed via Gateway and hosted on APIM.
This CDS has CRUD operations enabled using @ObjectModel annotations.
One of the key fields from the CDS (SAP table) can be empty as per business process, but when I try to query for this…

Felipe Martin
- 13
- 3
1
vote
1 answer
1
vote
0 answers
OAS3 - Request Body's inner object content type
Is it possible to have content type for a request body's inner object in OAS3 and get it displayed in the swagger UI's generated curl command when invoking the call? Is this a supported feature in OAS3? An example is given below. Reporter is the…

Saranki Magenthirarajah
- 481
- 1
- 5
- 14
1
vote
1 answer
Azure Api Management - cors policy. Cannot provide from named values dynamically
Objective:
Dynamically pass cors origins to the cors policy from named values.
Example:
Suppose I have the following named values:
name: cors-origins
value: https://domain1.com;https://domain2.com
and the CORS policy which intends to make use of…

Cristian E.
- 3,116
- 7
- 31
- 61
1
vote
1 answer
Json Schema Validation failing with error in WSO2 APIM
I am using wso2 apim 3.1.0 I want to enable json schema validation for the json payload. I have referred to the belpw document for setting up json shema validation in wso2…

user3553913
- 373
- 3
- 17
1
vote
1 answer
Azure APIM policy to pass query param as a path param
Is there a way to pass the query param coming via the APIM request as path param to the backend service call?
For example:
For the below API call
base_url/a/{pathParam1}?query=Qvalue
I want to transform the URL…

Sanjay
- 43
- 8