...
Code Block | ||
---|---|---|
| ||
pipeline: - body.set: "This pipeline was called with id: ${request.params.['id']}" |
...
A key-value map of all HTT request query parameters of the current request.
Example:
Code Block |
---|
pipeline: - body.set: "This pipeline was called with id: ${request.params['id']'}" |
request.protocol
Returns the name and version of the protocol the request uses in the form protocol/majorVersion.minorVersion
, for example, HTTP/1.1
.
...