Block Special character in request body in TYK-gateway

Hi
Sorry, missed your message. Hope you managed, but in general, it’s the same.
You can check it in this doc

"url_rewrites": [{
  "path": "match/me",
  "method": "GET",
  "match_pattern": "(\w+)/(\w+)",
  "rewrite_to": "my/service?value1=$1&value2=$2"
}],
  • match_pattern: This is the actual capture group to generate. This is a pure regex, in this case we are capturing two-word groups.