Nestr icon

Nestr

Manage projects, roles, circles, and workspaces in Nestr - Role-based and self-organized collaboration

Overview

This node interacts with the "Post" resource in the Nestr project management platform, specifically supporting the "Get Many" operation. It retrieves multiple posts from a specified workspace, optionally filtered by labels or parent post ID. This is useful for workflows that need to aggregate or analyze multiple posts within a workspace, such as generating reports, syncing data, or automating content processing.

For example, you might use this node to fetch all posts tagged with certain labels in a workspace to monitor project updates or to gather discussion threads under a specific parent post.

Properties

Name Meaning
Workspace Name or ID Selects the workspace to retrieve posts from. Can be chosen from a list or specified via expression.
Additional Fields Optional filters for the query:
- Labels: Comma-separated list of labels to filter posts.
- Parent ID: Filter posts that are children of a specific parent post ID.
Return All Whether to return all matching posts or limit the number of results.
Limit Maximum number of posts to return if "Return All" is false.

Output

The node outputs an array of JSON objects representing posts retrieved from the specified workspace. Each object contains the post's details as returned by the Nestr API, including fields like title, description, labels, parent relationships, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Nestr API using OAuth2 authentication.
  • The node depends on the Nestr API endpoints for workspaces and posts.
  • The user must configure appropriate credentials (an API key or OAuth2 token) in n8n to authenticate requests.

Troubleshooting

  • Common Issues:

    • Invalid or missing workspace ID: Ensure the workspace exists and the ID is correct.
    • Insufficient permissions: The API token must have access rights to read posts in the workspace.
    • Network or API errors: Check connectivity and Nestr service status.
  • Error Messages:

    • Errors related to authentication typically indicate invalid or expired credentials; re-authenticate or update credentials.
    • "Not Found" errors may mean the workspace or posts do not exist or the user lacks access.
    • Rate limiting errors require waiting before retrying or adjusting request frequency.

Links and References

Discussion