Skip to main content

monday.com to Eledo PDF Data Mapping

To print monday.com data into a PDF document, you need to define data expressions in your Eledo template.

You can use data expressions to print values from a monday.com board, item, and subitems. This guide explains how to build them.


Board

Currently, only the following fields can be printed from a monday.com board.

monday.com columnEledo data expressionNotes
ididBoard ID (number)
namenameBoard name (text)
descriptiondescriptionBoard description (text)

Item

monday.com items can also contain custom columns. These are represented by their technical name in data expressions, not by their label.

It may be difficult to find a column’s technical name. To simplify this, use the data structure import available in the Eledo template's Input Fields menu.

Select your monday.com connection, choose your board, and click Import.

monday.com columnEledo data expressionNotes
iditem.idItem unique identifier (number)
nameitem.nameItem name (text)
stateitem.stateItem state (text)
updated_atitem.updated_atLast update date (date)
custom_columnitem.custom_columnCustom column (text) — replace custom_column with your column's technical name

Subitems

Subitems are represented as an array attached to the item.

To iterate through the array, use Block Repetition with the item.subitems data expression.

Inside the Block Repetition, use only the subitem column names (without any prefix).

monday.com columnEledo data expression (within Block Repetition)Notes
ididSubitem unique identifier (number)
namenameSubitem name (text)
statestateSubitem state (text)
updated_atupdated_atLast update date (date)
custom_columncustom_columnCustom column (text) — replace custom_column with your column's technical name

Image Support

monday.com File columns can contain image attachments that can be included in your PDF.

Since a File column can contain multiple attachments, it is represented as an array.

To iterate through the array, use Block Repetition with the item.file_column data expression, where file_column is the technical name of your File-type column.

Inside the Block Repetition, use only the file field names (without any prefix).

File fieldEledo data expression (within Block Repetition)Notes
assetIdassetIdFile unique identifier (number)
namenameFile name (text)
fileTypefileTypeFile type (text)
isImageisImageIndicates whether the file is an image (boolean)
urlurlFile URL (text)
file_extensionfile_extensionFile extension (text)

Was this article helpful?

Yes
No