Monday.com icon

Monday.com

Interact with Monday.com API

Overview

This node operation creates a new board in Monday.com, a popular work operating system used for project management and team collaboration. Creating boards allows users to organize projects, tasks, or workflows visually. This operation is useful when automating the setup of new projects or teams, enabling consistent board creation with predefined settings such as board type, workspace placement, folder organization, or templates.

Practical examples:

  • Automatically create a new project board when a new client signs up.
  • Set up private or shared boards for different departments dynamically.
  • Create boards from existing templates to standardize project structures.

Properties

Name Meaning
Board Name The name/title of the new board to be created.
Board Kind The type of board to create. Options: Public (visible to all), Private (restricted access), Share (shared with specific users).
Workspace (Optional) The workspace where the board will be created. Workspaces group boards together.
Folder ID (Optional) The ID of a folder to place the board into, organizing it within the workspace.
Template ID (Optional) The ID of a Monday.com template to create the board from, allowing pre-configured structure.

Output

The output JSON contains the full response from Monday.com's API representing the newly created board. This typically includes details such as the board's unique ID, name, kind, workspace association, and other metadata returned by the API.

No binary data output is involved in this operation.

Example output snippet (conceptual):

{
  "id": 123456789,
  "name": "New Project Board",
  "kind": "public",
  "workspaceId": 987654321,
  "folderId": 2015797,
  "templateId": 1234567890,
  ...
}

Dependencies

  • Requires an API authentication token credential for Monday.com configured in n8n.
  • Uses Monday.com GraphQL API version defaulting to "2023-10" unless overridden.
  • Optional dependencies include workspace and template loading methods to populate dropdowns in the UI.

Troubleshooting

  • Common issues:

    • Invalid or missing API token: Ensure the Monday.com API key credential is correctly set up.
    • Incorrect workspace or folder IDs: Verify that the workspace and folder exist and the user has permissions.
    • Template ID not found or invalid: Confirm the template ID exists in Monday.com and is accessible.
    • Board name conflicts or invalid characters: Use valid names without special characters disallowed by Monday.com.
  • Error messages:

    • Authentication errors: Check API token validity and permissions.
    • Validation errors from Monday.com API: Review input parameters for correctness.
    • Network or timeout errors: Ensure stable internet connection and Monday.com service availability.

Links and References

Discussion