Versions Compared

Key

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

Inside any automation pipeline there are objects automatically provided to you at execution time which can be accessed without any further allocation steps. Such an object is called Pipeline Object. These objects can be accessed using the Pipeline Expression Language (PEL). Some of them are read-only and some are read-write. Here is an example how to use such an implicite object inside a pipeline:

...

Code Block
language

...

headers

...

body

...

request

...

response

yaml
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 .

...