Monday.com icon

Monday.com

Interact with Monday.com API

Overview

This node interacts with the "Updates" resource of Monday.com, specifically allowing you to retrieve updates related to a particular item. The "Get" operation fetches a list of updates for a specified item ID, with an optional limit on how many updates to return.

Common scenarios where this node is useful include:

  • Monitoring recent changes or comments on a specific task or item in Monday.com.
  • Aggregating update history for reporting or auditing purposes.
  • Triggering workflows based on new updates or comments added to an item.

For example, you could use this node to fetch the latest 10 updates on a project task to display them in a dashboard or send notifications when new updates appear.

Properties

Name Meaning
Item ID The unique identifier of the item from which to retrieve updates.
Limit Maximum number of updates to return (between 1 and 100). Defaults to 25 if not provided.

Output

The output is an array of JSON objects, each representing an update associated with the specified item. Each update object typically contains details such as the update text, author, creation time, and possibly replies or mentions.

No binary data output is produced by this operation.

Example output structure (simplified):

{
  "id": "update_id",
  "text": "Update content here",
  "creatorId": 123456,
  "createdAt": "2024-01-01T12:00:00Z",
  "replies": [...],
  "mentions": [...]
}

Dependencies

  • Requires an API authentication token credential for Monday.com.
  • The node uses the Monday.com API client internally to communicate with the Monday.com service.
  • No additional environment variables are required beyond the API token credential.

Troubleshooting

  • Invalid Item ID: If the provided item ID does not exist or is incorrect, the node may return an empty result or an error. Verify the item ID is correct.
  • API Rate Limits: Monday.com enforces rate limits; excessive requests may cause errors. Implement retry logic or reduce request frequency if needed.
  • Limit Parameter Out of Range: Providing a limit outside the allowed range (1-100) may cause errors or be ignored. Ensure the limit is within bounds.
  • Authentication Errors: If the API token is invalid or expired, the node will fail to authenticate. Check and update the API credentials accordingly.
  • Network Issues: Connectivity problems can cause request failures. Verify network access to Monday.com API endpoints.

Links and References

Discussion