diff --git a/Stubbing-and-Request-Matching.md b/Stubbing-and-Request-Matching.md index 7f59b92..8e0fa55 100644 --- a/Stubbing-and-Request-Matching.md +++ b/Stubbing-and-Request-Matching.md @@ -382,7 +382,7 @@ The model of the request is supplied to the header and body templates. The follo * `request.headers..[]` - nth value of a header (zero indexed) e.g. request.headers.ManyThings.[1] * `request.cookies.` - Value of a request cookie e.g. request.cookies.JSESSIONID * `request.body` - Request body text as string -* `request.bodyAsJson` - Request body as dynamic Json Object +* `request.bodyAsJson` - Request body as dynamic Json Object. Note that the request **must** contain the header `Content-Type` with value `application/json`! ### Handlebars helpers All of the standard helpers (template functions) provided by the C# Handlebars implementation plus all of the string helpers are available e.g.