Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageyaml
pipeline:
  - body.set: "This pipeline was called with id: ${request.params.['id']}"

Also see: https://logabit.atlassian.net/wiki/spaces/PA/pages/2543026496/Pipeline+Expression+Language+PEL#Accessing-Implicite-Pipeline-Objects%E2%80%8B .

...

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.

...