template Action
Last updated
Was this helpful?
Last updated
Was this helpful?
The <template>
action is the primary tool for generating JSON data in FLAT's .
in
: Location of input data
Either a file (e.g. in="conf.json"
) or a variable (in="$body"
). The input sets the template's initial context ({{.}}
). It may be a JSON or .
in=""
signals that no input data is used.
The context can be changed within the template with .
Default: fit://request/content
out
: Location of output data
Where the generated JSON should be stored.
This can be a variable. Variables will hold the typed result, such as a JSON object or e.g. a boolean value.
Default: fit://request/content
src
: Location of the template file
The template definition can be stored in a separate file. The file path is resolved relatively to the flow file.
There is no obligatory file extension. However, we recommend tmpl
or tpl
.
check
: Check output
The generated JSON will be parsed and checked. If the template has produced an invalid JSON string, an error will be logged.
The generated text will still be written to the configured out
location. In that case, if out
is a variable, the output is not typed.
Checking can be disabled with check="false"
.
Default: true
Request with curl
:
Output:
Request with curl
:
Output:
The file path modifyResponse.tmpl
is resolved relatively to the flow file.
modifyResponse.tmpl
:
The holds the HTTP body of incoming POST
requests.
In this example, we pass the client's POST
body to to have it reflected back.