Worktables icon

Worktables

Interact with Monday.com boards and items

Actions126

Overview

This node interacts with the Monday.com API to perform various operations related to users, boards, items, updates, teams, notifications, and files. Specifically, for the 'User' resource and 'List Users' operation, it fetches a list of all users from the Monday.com account, including details such as user ID, name, email, photo, title, admin status, guest status, view-only status, enabled status, and associated teams. This is useful for scenarios where you need to retrieve user information for reporting, automation, or integration purposes.

Use Case Examples

  1. Retrieve all users in a Monday.com account to synchronize with an external CRM system.
  2. List users to assign tasks or send notifications based on user roles and teams.

Properties

Name Meaning
resource The type of entity to operate on, e.g., User.
operation The specific action to perform on the resource, e.g., List Users.

Output

JSON

  • id - User's unique identifier
  • name - User's full name
  • email - User's email address
  • photo_small - URL to the user's small profile photo
  • title - User's job title
  • is_admin - Boolean indicating if the user is an admin
  • is_guest - Boolean indicating if the user is a guest
  • is_view_only - Boolean indicating if the user has view-only access
  • enabled - Boolean indicating if the user account is enabled
  • teams - List of teams the user belongs to, each with id and name

Dependencies

  • Monday.com API key credential

Troubleshooting

  • API Key not found error: Ensure the Monday.com API key credential is correctly configured and provided.
  • User ID or other parameters missing: Verify that required parameters are set when performing operations that need them.
  • API rate limits or pagination issues: For large user lists, consider handling pagination or API limits as per Monday.com API documentation.
  • Error responses from Monday.com API: Check the error message details returned by the API and adjust the query or parameters accordingly.

Links

Discussion