Monday.com

Project Management integration · 23 node(s) including 1 trigger.

00Overview

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Monday.com

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

FieldTypeDetails
API TokensecretRequiredYour Monday.com API token
i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Board

Archive Board

monday/board_archive · Action

Archive a Monday.com board by its ID.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to archive

Returns: id, result, tool_result, success, error

Create Column

monday/board_column_create · Action

Add a column to a Monday.com board — choose its title and type (text, status, date, numbers, people, etc.).

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to add the column to
TitlestringRequiredThe column title
TypestringRequiredThe column type — choices: Text, Long Text, Numbers, Status, Dropdown, Date, People, Timeline, Tags, Checkbox, Link, Email, Phone, Rating
DefaultsobjectOptional column defaults (JSON object, e.g. {"labels":{"0":"Done"}})

Returns: id, result, tool_result, success, error

Get Columns

monday/board_column_get_all · Action

List the columns of a Monday.com board.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board whose columns to fetch

Returns: results, count, total, tool_result, success, error

Create Board

monday/board_create · Action

Create a new Monday.com board. Choose its name and kind (public, private, or shareable), optionally in a workspace or from a template.

FieldTypeDetails
NamestringRequiredThe name of the board
KindstringRequiredBoard visibility — choices: Public, Private, Shareable
Workspacestring● live pickerOptionally create the board in this workspace
Template IDstringOptionally create from this board template

Returns: id, result, tool_result, success, error

Get Board

monday/board_get · Action

Fetch a single Monday.com board by its ID.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to fetch

Returns: id, result, tool_result, success, error

Get Boards

monday/board_get_all · Action

List the Monday.com boards you can access.

FieldTypeDetails
Return AllbooleanReturn every board (ignores Limit)
LimitintegerMaximum number of boards to return (1-100)

Returns: results, count, total, tool_result, success, error

Create Group

monday/board_group_create · Action

Add a group (a section of rows) to a Monday.com board.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to add the group to
NamestringRequiredThe name of the group

Returns: id, result, tool_result, success, error

Delete Group

monday/board_group_delete · Action

Delete a group from a Monday.com board.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board the group belongs to
GroupstringRequired · ● live pickerThe group to delete

Returns: id, result, tool_result, success, error

Get Groups

monday/board_group_get_all · Action

List the groups of a Monday.com board.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board whose groups to fetch

Returns: results, count, total, tool_result, success, error

Update Group

monday/board_group_update · Action

Rename a Monday.com group or change its colour.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board the group belongs to
GroupstringRequired · ● live pickerThe group to update
NamestringA new name for the group
ColorstringA new colour for the group (e.g. #037f4c)

Returns: id, result, tool_result, success, error

03Item

Add Update to Item

monday/item_add_update · Action

Post an update (a comment) on a Monday.com item.

FieldTypeDetails
Item IDstringRequiredThe item to post an update on
UpdatetextRequiredThe update text

Returns: id, result, tool_result, success, error

Archive Item

monday/item_archive · Action

Archive a Monday.com item by its ID (a softer alternative to deleting it).

FieldTypeDetails
Item IDstringRequiredThe ID of the item to archive

Returns: id, result, tool_result, success, error

Change Column Value

monday/item_change_column_value · Action

Set a single column's value on a Monday.com item. The value is column-type-specific JSON.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board the item is on
Item IDstringRequiredThe item to update
ColumnstringRequired · ● live pickerThe column to set
ValueobjectRequiredThe new value as JSON, e.g. {"label":"Done"} for a status

Returns: id, result, tool_result, success, error

Change Multiple Column Values

monday/item_change_multiple_column_values · Action

Set several column values on a Monday.com item at once, as a JSON object of column-id → value.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board the item is on
Item IDstringRequiredThe item to update
Column ValuesobjectRequiredJSON of column-id to value, e.g. {"status":{"label":"Done"},"text":"hi"}

Returns: id, result, tool_result, success, error

Create Item

monday/item_create · Action

Create an item (a row) on a Monday.com board. Optionally place it in a group and set column values.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to create the item on
Groupstring● live pickerOptionally place the item in this group
Item NamestringRequiredThe name of the item
Column ValuesobjectOptional column values as JSON, e.g. {"status":{"label":"Done"}}

Returns: id, result, tool_result, success, error

Delete Item

monday/item_delete · Action

Permanently delete a Monday.com item by its ID.

FieldTypeDetails
Item IDstringRequiredThe ID of the item to delete

Returns: id, result, tool_result, success, error

Get Item

monday/item_get · Action

Fetch a single Monday.com item by its ID, including its column values.

FieldTypeDetails
Item IDstringRequiredThe ID of the item to fetch

Returns: id, result, tool_result, success, error

Get Items

monday/item_get_all · Action

List the items in a Monday.com group on a board.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to list items from
GroupstringRequired · ● live pickerThe group whose items to list
Return AllbooleanReturn every item (follows pagination)
LimitintegerItems per page (1-100)

Returns: results, count, total, tool_result, success, error

Get Items by Column Value

monday/item_get_by_column_value · Action

Find Monday.com items on a board whose column matches a value.

FieldTypeDetails
BoardstringRequired · ● live pickerThe board to search
ColumnstringRequired · ● live pickerThe column to match on
ValuestringRequiredThe value to match
Return AllbooleanReturn every match (follows pagination)
LimitintegerItems per page (1-100)

Returns: results, count, total, tool_result, success, error

Move Item to Group

monday/item_move · Action

Move a Monday.com item into a different group on its board.

FieldTypeDetails
Boardstring● live pickerThe board the item is on (used to load the group picker)
Item IDstringRequiredThe item to move
GroupstringRequired · ● live pickerThe group to move the item into

Returns: id, result, tool_result, success, error

04User

Get Users

monday/user_get_all · Action

List the users in your Monday.com account.

FieldTypeDetails
LimitintegerMaximum number of users to return (1-100)

Returns: results, count, total, tool_result, success, error

05Workspace

Get Workspaces

monday/workspace_get_all · Action

List the Monday.com workspaces you can access.

FieldTypeDetails
LimitintegerMaximum number of workspaces to return (1-100)

Returns: results, count, total, tool_result, success, error

06Triggers

Monday.com Webhook Trigger

trigger/monday_webhook · Trigger

Triggers a flow when something happens on a Monday.com board you watch — an item is created, a column value changes, an update is posted, and so on. The webhook is registered automatically for the board and event you choose (Monday's challenge handshake is handled for you).

FieldTypeDetails
BoardstringRequiredThe board to watch for changes
EventstringRequiredWhich event to fire on — choices: Item Created, Item Name Changed, Column Value Changed, Status Column Changed, Update Posted, Item Archived, Item Deleted, Item Moved to Group, Subitem Created, Column Created

Returns: content, event_type, board_id, item_id, column_id, user_id, body

07Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.