Actions29
- Board Actions
- Item Actions
- Update Actions
- Team Actions
- User Actions
- Query Actions
Overview
The node "Worktables" integrates with Monday.com to perform various operations on Monday.com resources such as boards, items, groups, updates, teams, and users. Specifically, the Get a Board operation under the Board resource retrieves detailed information about a specific board within a selected workspace.
This operation is useful when you want to fetch comprehensive details of a Monday.com board, including its columns, groups, subscribers, URL, and metadata. For example, it can be used to synchronize board data into another system, audit board configurations, or trigger workflows based on board properties.
Properties
| Name | Meaning |
|---|---|
| Workspace Name or ID | Select the workspace containing the board. You can choose from a list or specify an ID via expression. This is required. |
| Board Name or ID | Select the specific Monday.com board to retrieve. Choose from the list or specify an ID using an expression. This is required. |
These properties are used to identify the exact board to query within a given workspace.
Output
The output JSON structure for the Get a Board operation contains detailed information about the requested board, including:
id: The unique identifier of the board.name: The name of the board.description: Description text of the board.board_kind: Type of the board (e.g., public, private).columns: Array of column objects, each with:id: Column ID.title: Column title.type: Column type.
groups: Array of group objects in the board, each with:id: Group ID.title: Group title.
items_count: Number of items on the board.subscribers: List of subscribers to the board, each withidandname.url: Web URL of the board.updated_at: Timestamp of last update.workspace: Object with workspaceidandname.
The output is a single JSON object representing the board's full details.
Dependencies
- Requires an API key credential for Monday.com API access.
- The node makes HTTP POST requests to the Monday.com GraphQL API endpoint:
https://api.monday.com/v2. - Proper configuration of the Monday.com API key in n8n credentials is necessary.
- The workspace and board IDs must be valid and accessible by the provided API key.
Troubleshooting
- API Key Not Found: If the API key credential is missing or invalid, the node will throw an error. Ensure the Monday.com API key is correctly configured in n8n credentials.
- Board ID Required: The operation requires a valid board ID. If not provided, an error will occur.
- Workspace ID Required: Similarly, a valid workspace ID must be specified.
- Permission Issues: If the API key does not have access to the specified workspace or board, the request will fail.
- Invalid Query Response: If the Monday.com API changes or returns unexpected data, parsing errors may occur.
- Network Issues: Connectivity problems to the Monday.com API endpoint will cause request failures.
To resolve these issues, verify credentials, input parameters, and network connectivity.