Worktables icon

Worktables

Interact with Monday.com boards and items

Actions126

Overview

This node interacts with the Monday.com API to manage users within the Monday.com platform. Specifically, the 'Get a User' operation retrieves detailed information about one or more users by their IDs. This is useful for workflows that need to fetch user details such as name, email, photo, title, admin status, guest status, and team memberships. For example, it can be used to synchronize user data, display user information in reports, or trigger actions based on user attributes.

Use Case Examples

  1. Retrieve details of specific users by selecting their IDs from a list or specifying them dynamically using expressions.
  2. Fetch user information to integrate with other systems or automate user-related processes.

Properties

Name Meaning
Users Select one or more user IDs to retrieve details for. Users can be chosen from a list or specified using expressions.

Output

JSON

  • id - The unique identifier of the user.
  • name - The full name of the user.
  • email - The email address of the user.
  • photo_small - URL to the user's small profile photo.
  • title - The job title of the user.
  • 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 permissions.
  • enabled - Boolean indicating if the user account is enabled.
  • teams - List of teams the user belongs to, each with an ID and name.

Dependencies

  • Monday.com API key credential required for authentication.

Troubleshooting

  • Ensure the API key credential is correctly configured and has the necessary permissions to access user data.
  • If no users are returned, verify that the user IDs provided are correct and that the users exist in the Monday.com account.
  • Handle API errors gracefully by checking error messages returned from the Monday.com API and adjusting the request parameters accordingly.

Links

Discussion