I have inbound policy as below
<choose>
<when condition="@((context.Request.Body != null) && context.Request.Body.As<JObject>
(preserveContent: true)["ChannelID"] != null)">
<set-header name="channelId" exists-action="override">
<value>"@(context.Request.Body.As&amp;amp;lt;JObject&amp;amp;gt;(preserveContent: true)
["ChannelID"])"</value>
</set-header>
</when>
</choose>
But the inboundpolicy treating the ChannelID as case sensitive.In the request body if we pass as channelId then ChannelID property is not getting recognized.
How can we make the property name as case insensitive in the inbound policy?