Worktables icon

Worktables

Interact with Monday.com boards and items

Overview

The node enables interaction with Monday.com boards and items, specifically supporting operations on various resources such as boards, items, subitems, updates, teams, users, and custom queries. For the Item resource with the Duplicate an Item operation, the node duplicates an existing item or subitem within a specified board. It optionally allows including updates associated with the original item in the duplication.

This functionality is useful when you want to quickly replicate tasks, projects, or entries in Monday.com without manually recreating all details. For example, duplicating a task item with its updates can help streamline project management workflows by reusing similar task structures and histories.

Properties

Name Meaning
Workspace Name or ID Select the workspace containing the board. Can be chosen from a list or specified via expression.
Board Name or ID Select the Monday board where the item exists. Can be chosen from a list or specified via expression.
Is Subitem Boolean indicating whether the item is a subitem (child of another item).
Item Name or ID Select the item to duplicate from the selected board. Required if not duplicating a subitem.
Parent Item Name or ID If duplicating a subitem, specify the parent item's ID.
Subitem Name or ID If duplicating a subitem, specify the subitem's ID.
With Updates Boolean indicating whether to include the item's updates in the duplication.

Output

The output JSON contains the result of the duplication mutation from Monday.com's API. Specifically, it returns an object with the duplicated item's id. The structure looks like:

{
  "data": {
    "duplicate_item": {
      "id": "newly_created_item_id"
    }
  }
}

No binary data output is involved in this operation.

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 API key credential in n8n is necessary for authentication.

Troubleshooting

  • Missing API Key: The node throws an error if the API key credential is not found or invalid. Ensure the API key is correctly configured.
  • Missing Required Parameters: Errors occur if required parameters like itemId or boardId are missing. Verify that these inputs are provided.
  • Invalid IDs: Providing incorrect or non-existent board/item/subitem IDs will cause API errors. Confirm IDs are valid and accessible.
  • Permission Issues: The API key must have sufficient permissions to duplicate items on the specified board.
  • Network/Request Failures: Network issues or API downtime may cause request failures. Check connectivity and Monday.com service status.

Links and References

Discussion