Active |
---|
This application does not need additional settings. So you can make connectionUnique, active service acces point to a network. There are different types of connections (API key, Oauth…). only by using your login credentials or by following the instructions below. |
Microsoft Word TemplatesTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues. enables you to merge data provided by various services with templatesTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues. and produce Microsoft Word documents as a result.
TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
![]() |
Created document:
![]() |
A TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues. is a regular Microsoft Word document (.docx file) with special tags in its text that determine where and how to merge/fill in data. There are three types of tags: Simple value, Condition and Loop or section.
A Simple value tag is simply replaced with a corresponding value. The tag’s name corresponds to the Key
field’s value, which is placed inside double curly braces: e.g. {{name}}
.
TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
> Hi {{name}}!
Module’s setup:
![]() |
Created document:
> Hi Petr!
A Condition tag enables you to wrap certain parts of a text that should be rendered conditionally. To wrap the conditional text, place it between the opening and closing tags. The name of the opening tag is prepended with a hash sign #
, the name of the closing tag is prepended with a slash /
.
TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
> {{#hasPhone}}Phone: {{phone}} {{/hasPhone}} > {{#hasEmail}}Email: {{email}} {{/hasEmail}}
Module’s setup:
![]() |
Created document:
> Phone: 123456
A Loop or section tag enables you to repeat parts of a text. Similarly to the Condition tag, to wrap the repeated text, place it between the opening and closing tags. The name of the opening tag is prepended with a hash sign #
, the name of the closing tag is prepended with a slash /
.
When using loops, you can choose to employ either the Fill out a document module or the Fill a document with a batch of data aggregatorYou can use a table aggregator to create a table from multiple bundles. The table aggregator merges values based on your specified column and row parameters and outputs into a single bundle. One possible use is compiling blog posts or emails into a single email summary. module.
If you employ Fill out a document module, the content of the field Value has to be an arrayWithin a bundle, data items of the same type are sometimes in an array. You can find an array by looking at the details of a bundle. Depending on the details of your scenario, you can map other modules to a specific item in an array or use iterators and aggregators to manipulate your data into other formats. When mapping,... of collections, where:
- Each collection corresponds to one data entry and contains one item
entry
- Item
entry
contains a collection with two itemskey
andvalue
- Item
key
contains the tag’s name - item
value
contains the tag’s value
TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
> {{#contact}} > {{name}}, {{phone}} > {{/contact}}
Module’s setup:
![]() |
Created document:
> Jan Toman, 1234 > Eduard Salo, 7899999
You can also execute a loop to populate a table. The example below shows how to create such table in a templateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
![]() |
If your data entries come as separate bundles, you may prefer to employ the Fill a document with a batch of data aggregatorYou can use a table aggregator to create a table from multiple bundles. The table aggregator merges values based on your specified column and row parameters and outputs into a single bundle. One possible use is compiling blog posts or emails into a single email summary. module. You can employ this module also if your data entries come as an arrayWithin a bundle, data items of the same type are sometimes in an array. You can find an array by looking at the details of a bundle. Depending on the details of your scenario, you can map other modules to a specific item in an array or use iterators and aggregators to manipulate your data into other formats. When mapping,... – just employ the Iterator module to transform the content of the arrayWithin a bundle, data items of the same type are sometimes in an array. You can find an array by looking at the details of a bundle. Depending on the details of your scenario, you can map other modules to a specific item in an array or use iterators and aggregators to manipulate your data into other formats. When mapping,... to a series of bundles.
The main advantage of the Fill a document with a batch of data module is that it enables you to easily setup the structure required for the Value field and map items to each value
item. In contrast to the Fill out a document module, the field Values contains only a single entry, the actual entries will be created and populated for each incoming bundleA bundle is a chunk of data and the basic unit for use with modules. A bundle consists of items, similar to how a bag may contain separate, individual items. . The templateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues. will be produced after all input bundles have been processed. The aggregatorYou can use a table aggregator to create a table from multiple bundles. The table aggregator merges values based on your specified column and row parameters and outputs into a single bundle. One possible use is compiling blog posts or emails into a single email summary. module is useful especially when creating lists or reports.
Example: Export Google Contacts into a table
![]() |
The first module loads the templateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.. The next module retrieves all contacts from the specified group in Google Contacts. The aggregatorYou can use a table aggregator to create a table from multiple bundles. The table aggregator merges values based on your specified column and row parameters and outputs into a single bundle. One possible use is compiling blog posts or emails into a single email summary. module then aggregates all values retrieved from Google Contacts and merges them into the templateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.. Finally, the last module will save the filled templateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues. to a desired location.
TemplateTemplates are predefined scenarios that you can expand and customize to create new scenarios. You can then share these with friends and colleagues.:
![]() |
Module’s setup:
![]() |
Created document:
![]() |