Updated Request Matchers (markdown)

Stef Heyenrath
2018-08-31 18:12:44 +02:00
parent e1af19f48a
commit 8fca9e7685

@@ -37,6 +37,35 @@ server
#### JSON Mapping option
``` js
{
"Guid": "67ae335b-5d79-42dc-8ca7-236280ab91ec",
"Priority": 0,
"Request": {
"Path": {
"Matchers": [
{
"Name": "WildcardMatcher",
"Pattern": "/linq"
}
]
},
"Params": [
{
"Name": "from",
"Matchers": [
{
"Name": "LinqMatcher",
"Pattern": "DateTime.Parse(it) > \"2018-03-01 00:00:00\""
}
]
}
],
"Body": {}
},
"Response": {
"Body": "linq match !!!"
}
}
```
## JSON (JsonMatcher)