Template Fields and Variables


List Fields

To create a list, simply define a section in your document template. When you reference a property of an object within a collection, the templating engine automatically recognizes the need to iterate through it.

AutomatedDocs List of templates

Passing Values

Lists can be generated using the following methods:

Json Structure your JSON object as shown below:

{
    "sales_conditions": [
        "No Refund after 14 days",
        "2 year warranty"
    ],
}

This configuration will produce the output shown here:

AutomatedDocs List of templates

Excel & Google Sheets Input the values separated by commas or new lines. Both of the examples below will create a list:

AutomatedDocs List of templates

The generated document will display as follows:

AutomatedDocs List of templates