Worktables icon

Worktables

Interact with Monday.com boards and items

Actions126

Overview

This node operation lists all subscribers of a specified Monday.com board. It is useful for scenarios where you need to retrieve and manage the list of users and teams subscribed to a board, such as for notifications, access control, or reporting purposes. For example, you can use this operation to get all subscribers of a project management board to send updates or analyze team involvement.

Use Case Examples

  1. Retrieve all subscribers of a marketing campaign board to send targeted notifications.
  2. List subscribers of a development board to audit access and permissions.

Properties

Name Meaning
Board The ID of the Monday.com board for which to list subscribers. This is a required field and can be selected from a list or specified via an expression.

Output

JSON

  • id - Subscriber's unique identifier.
  • is_guest - Indicates if the subscriber is a guest user.
  • is_pending - Indicates if the subscriber's subscription is pending.
  • is_verified - Indicates if the subscriber is verified.
  • account
    • id - ID of the subscriber's account.
    • logo - Logo of the subscriber's account.
    • country_code - Country code of the subscriber's account.
  • name - Name of the subscriber.
  • email - Email address of the subscriber.
  • is_admin - Indicates if the subscriber has admin privileges.
  • enabled - Indicates if the subscriber is enabled.
  • created_at - Timestamp when the subscriber was created.
  • team_subscribers
    • id - ID of the subscribed team.
    • name - Name of the subscribed team.
    • users
      * id - ID of a user in the subscribed team.
      * name - Name of a user in the subscribed team.
      * email - Email of a user in the subscribed team.

Dependencies

  • An API key credential for Monday.com API

Troubleshooting

  • Ensure the Board ID is provided and valid; missing or incorrect board ID will cause errors.
  • Verify that the API key credential is correctly configured and has sufficient permissions to access board subscriber data.
  • If the response is empty, check if the board actually has subscribers or if there are any access restrictions.
  • Handle API rate limits by implementing retries or delays if you encounter rate limit errors.

Links

Discussion