How to read x-www-form-urlencoded fields in Apigee

Hi,

How can we read/access fields passed in body with content type = application/x-www-from-urlencoded in apigee conext flow.

0 1 255
1 REPLY 1

Did you try below

 
<ExtractVariables async="false" continueOnError="false" enabled="true" name="EV-Request">
<DisplayName>EV-Request</DisplayName>
<Properties/>
<FormParam name="param">
<Pattern>{param}</Pattern>
</FormParam>

<IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables>
<Source clearPayload="false">request</Source>
</ExtractVariables>