Liquid Template

Transform data using a provided Liquid Template.
Component key: liquid-template#
DescriptionThis component allows you to use the LiquidJS Templating Engine to template out documents for use by subsequent integration steps.
The transform action takes two inputs: data
and liquidTemplate
.
Data is used to populate the template.
For example, suppose you have data that looks like this:
And suppose you have a template that looks like this:
Passing in that data into that template, your result would read:
#
Actions#
Render TemplateReceives provided json data and transforms it into a new format using a Liquid Template | key: transform
Input | Key | Notes | Example |
---|---|---|---|
Data data / Required | data | This JSON payload will be fed into the liquid template. | |
Liquid Template code / Required | liquidTemplate | The Liquid Template that will be used to transform the provided data. |