I would like to connect to an RestAPI-Service, which needs the header information:
"content-type": "application/x-www-form-urlencoded"
but have problems using it as well in Flow as in PowerApps

Error code/status is 415: Unsupported Media Type Content type '' not supported
To reproduce the problem, I tested it with the Postman Echo Server and two header keys: "content-type" and "MyContentType":
In Postman both Key/Value are echoed:
I generate a custom connector with these two header parameters

and the default response 200:

The custom connector test shows no error and no problem: both keys are in the response:

Problem:
If I use it in a Flow "content-type" is missing, only "MyContentType" is accessable:

I've testet the runtime server input: both parameters are transfered to the azure platform
{
"method":"post",
"headers":{
"Content-Type":"application/x-www-form-urlencoded",
"MyContentType":"application/x-www-form-urlencoded"
},
"path":"/post",
"host":
{
"api":
{
"runtimeUrl":"https://europe-002.azure-apim.net/apim/flowposttest-5f7e5f68ae5b1cf2d2-5f79e327c051ec9794"
},
"connection":
{"name":"/providers/Microsoft.PowerApps/apis/shared_flowposttest-5f7e5f68ae5b1cf2d2-5f79e327c051ec9794/connections/e38ffb06-9eb2-451d-a51a-5509-8628e957"
}
},
"authentication":
{
"scheme":"Key",
"parameter":"*sanitized*",
"type":"Raw"
}
}Why is the Azure Server deleting the "content-type" parameter?