Worktables icon

Worktables

Interact with Monday.com boards and items

Actions126

Overview

This node operation adds subscribers to a specified Monday.com board. It supports adding individual users and teams as either owners or subscribers. This is useful for managing board access and notifications by programmatically updating the list of board subscribers, for example, when onboarding new team members or automating project collaboration setups.

Use Case Examples

  1. Add multiple users as owners and subscribers to a project board.
  2. Add entire teams as subscribers to a board to keep them updated on project progress.

Properties

Name Meaning
Board The ID of the Monday.com board to which subscribers will be added.
User Subscribers A collection of users to add as subscribers or owners to the board. Each user entry includes the user ID and a boolean indicating if they are an owner.
Team Subscribers A collection of teams to add as subscribers or owners to the board. Each team entry includes the team ID and a boolean indicating if they are an owner.

Output

JSON

  • ownerUsers - List of users added as owners to the board.
  • subscriberUsers - List of users added as subscribers to the board.
  • ownerTeams - List of teams added as owners to the board.
  • subscriberTeams - List of teams added as subscribers to the board.
  • boardId - The ID of the board to which subscribers were added.

Dependencies

  • Monday.com API with an API key credential

Troubleshooting

  • Ensure the API key credential is correctly configured and has permissions to modify board subscribers.
  • Verify that the board ID is valid and accessible by the API key user.
  • Check that user and team IDs are correct and exist in the Monday.com account.
  • If the node fails, inspect error messages for details on missing permissions or invalid inputs.

Links

Discussion