How to create a Mock Server that will retrieve different responses based on the request body/request body parameters?
How does the Response Matching/Request Body setting actually work? As I am
getting the following error when trying to use it?
{ "error": {
"name": "mockRequestNotFoundError",
"message": "Double check your method and the request path and try again.",
"header": "No matching requests" } }
Basically, I need to get different responses by passing in the request body e.g this:
{ "transactionId": "12345" } / { "transactionId": 12345 }