Hi I want to use wiremock with the recording capab...
# help
r
Hi I want to use wiremock with the recording capability to automate mock creation, my services is using RPC so 1 endpoint can return multiple type of response depending on the method and the params, both method and the params is specified in the request body, here is the example for the request body
Copy code
{
  "id": 12345,
  "jsonrpc": "2.0",
  "source": "abcde",
  "method": "methodA",
  "params": [
    9876543
  ]
}
when starting the recording I want to match all the methods and all the params probably using something like
${json-unit.any-string}
but I want the stub to be created to only match the exact method and params, basically modifying the request before saving it to the stub file, can I do this?