Worktables icon

Worktables

Interact with Monday.com boards and items

Actions126

Overview

This node operation lists boards from Monday.com with various filtering and sorting options. It allows users to retrieve boards based on board kind (all, public, private, shareable), order by criteria (none, name, newest), and board state (all, active, archived, deleted). Users can also limit the number of results, set a request timeout, and optionally filter boards by a specific workspace. This operation is useful for workflows that need to fetch and process board data from Monday.com, such as reporting, synchronization, or automation tasks involving project boards.

Use Case Examples

  1. Retrieve all active public boards ordered by creation date.
  2. Fetch up to 100 private boards from a specific workspace.
  3. List all archived boards without any specific order.

Properties

Name Meaning
Board Kind Select the kind of boards to list (all, public, private, shareable).
Order By Select the order in which to retrieve boards (none, name, newest).
State Select the state of the boards to list (all, active, archived, deleted).
Limit Maximum number of boards to return. If 0, all boards are returned.
Request Timeout (ms) Timeout in milliseconds for each request to the Monday API. Increase if expecting many boards.
Filter by Workspace Whether to filter boards by a specific workspace. If enabled, a workspace must be selected.
Workspace Select the workspace to filter boards by. Only shown if filtering by workspace is enabled.

Output

JSON

  • id - Board ID
  • name - Board name
  • boardKind - Kind of the board (public, private, shareable)
  • state - State of the board (active, archived, deleted)
  • description - Description of the board
  • itemsCount - Number of items in the board
  • creator - Creator of the board with ID and name
  • owners - Owners of the board with their IDs and names
  • subscribers - Subscribers of the board with their IDs and names
  • tags - Tags associated with the board
  • workspaceId - ID of the workspace the board belongs to
  • updatedAt - Timestamp of the last update to the board
  • url - URL link to the board

Dependencies

  • Monday.com API key credential

Troubleshooting

  • Ensure the API key credential is correctly set and has permissions to access boards.
  • If filtering by workspace, verify the workspace ID is valid and accessible.
  • Timeout errors may occur if the request timeout is set too low; increase the timeout if many boards are expected.
  • If no boards are returned, check the filter criteria (board kind, state, workspace) to ensure they match existing boards.

Discussion