Hello,
I am trying to match the request based on the JSON body with path matchers as shown below but it seems that logical operators are not supported. Is the understanding correct? What's a possible solution, in this case? Any help will be appreciated, thanks!
"bodyPatterns": [
{
"matchesJsonPath": "$[?(@.mcode == '123')]"
},
{
"matchesJsonPath": "$[?(@.pcurr == '840')]"
},
{
"matchesJsonPath": "$[?(@.amount < '200000')]"
}
]