monday.com to Eledo PDF data mapping

monday.com to Eledo PDF data mapping

In order to print monday.com data into a PDF document, you will need to define data expressions in your Eledo template. You can use data expressions to print values from monday.com Board, Item and Subitems. In this guide we will explain how to build them.


Board

Only the following fields can be printed from monday.com's Board at the moment.

monday.com columnEledo data expressionNotes
ididBoard's ID (number)
namenameBoard's Name (text)
descriptiondescriptionBoard's Description (text)

Item

monday.com Items can also contain custom columns. They are represented with their technical name in the data expression, not by their label.

It may be difficult to find out a column's technical name. Therefore, we have developed a data structure import. You can find it in your Eledo template's Input Fields menu. Select your existing monday.com connection, choose your board, and click Import.

monday.com columnEledo data expressionNotes
iditem.idItem's Unique Identifier (number)
nameitem.nameItem's Name (text)
stateitem.stateItem's State (text)
updated_atitem.updated_atItem's last update date (date)
custom_columnitem.custom_columnItem's custom column (text)
- replace custom_column with your column's technical name

Subitems

Subitems are transformed as an array and attached to the item.

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

Within the Block Repetition, use only the Subitem's column names (without any prefix).

monday.com columnEledo data expression (within Block Repetition)Notes
ididSubitem's Unique Identifier (number)
namenameSubitem's Name (text)
statestateSubitem's State (text)
updated_atupdated_atSubitem's last update date (date)
custom_columncustom_columnSubitem's custom column (text)
- replace custom_column with your column's technical name

Image support

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

Since attachments can be more than one, File columns are transformed as an array.

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

Within the Block Repetition, use only the File's field names (without any prefix).

File's column fieldEledo data expression (within Block Repetition)Notes
assetIdassetIdFile's Unique Identifier (number)
namenameFile's Name (text)
fileTypefileTypeFile's Type (text)
isImageisImageIndicates whether the file is an image (boolean)
urlurlFile's URL (text)
file_extensionfile_extensionFile's extension (text)

Was this article helpful?

Yes

No