Description
The Monday Board Items entity represents tasks or work units (items) in a Monday.com board. Each item can have multiple columns with values like status, priority, people, and dates.
The Monday Board Items activity enables workflows to fetch, create, delete, or batch-create items on Monday.com boards. It supports flexible mapping of column data, making it suitable for task automation and integration with external data sources.
Use case: Tasks from an Excel sheet or a database can be created as board items using this activity. Columns like status, deadline, and owner can be mapped using Column Values or Column Values Mapping. The output items can then be synced into dashboards or tracked for project progress.
- Data – Required only for
CreateMany operation
Output
| Output Type | Format | Description |
|---|
| Data | JSON | Returned board item(s) |
Configuration Fields
| Field Name | Description |
|---|
| Connection | Monday.com connection to authenticate API access. |
| Operation | Type of operation: - Get
- Get All
- Create
- Create Many
- Delete
|
| ItemId | ID of the Monday item (required for Get and Delete). |
| BoardId | ID of the Monday board. Required for most operations. |
| GroupId | ID of the group within the board (used in Create). |
| ItemName | Name/title of the item to create. |
| ColumnValues | Key-value pairs to set column values for the item (Create). |
| ConfigFieldsMapping | Mapping for fields like BoardId, GroupId, and ItemName (CreateMany). |
| ColumnValuesMapping | Column mappings for multiple item creation (CreateMany). |
| Operation | Required Fields | Example Input |
|---|
| Get | ItemId | |
| Get All | BoardId | |
| Create | BoardId, GroupId, ItemName, ColumnValues | | BoardId | 123456789 | | GroupId | group_1 | | ItemName | Design Landing Page | | ColumnValues | | Status | Working | | Due Date | 2025-06-25 |
|
|
| Create Many | ConfigFieldsMapping, ColumnValuesMapping | | ConfigFieldsMapping | | BoardId | [Board ID] | | GroupId | [Group Name] | | ItemName | [Title] |
| | ColumnValuesMapping | | Status | [Status] | | Due Date | [Due Date] |
|
|
| Delete | ItemId | |
Sample Configuration
| Field | Value |
|---|
connection.id | mon123 |
connection.name | Monday Prod |
operation | Create |
boardId | 123456789 |
groupId | group_1 |
itemName | Design Landing Page |
columnValues | | Status | Working | | Due Date | 2025-06-25 |
|
Sample Output
| id | name | created_at | updated_at | column_values |
|---|
| 100001 | Design Landing Page | 2025-06-20T11:00:00Z | 2025-06-20T11:00:00Z | [{“name”:“Status”,“text”:“Working”},{“name”:“Due Date”,“text”:“2025-06-25”}] |