Nestr icon

Nestr

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

Overview

This node integrates with the Nestr project management platform, allowing users to manage projects within specified workspaces. Specifically, the Delete Project operation enables users to remove a project by its ID from a selected workspace.

Typical use cases include:

  • Automating cleanup of obsolete or completed projects.
  • Integrating project deletion into larger workflows that manage project lifecycles.
  • Synchronizing project states between Nestr and other tools by removing projects no longer needed.

For example, you might use this node in an automation that deletes projects marked as archived in another system, ensuring your Nestr workspace stays up-to-date.

Properties

Name Meaning
Workspace Name or ID Select the workspace where the project exists. You can choose from a list of available workspaces or specify an ID using an expression.
Project ID The unique identifier of the project to delete.
Additional Fields Optional extra parameters (not used for delete operation but available for other operations):
- Labels: Comma-separated list of labels.
- Parent ID: Parent item ID.

Output

The output is a JSON object representing the response from the Nestr API after attempting to delete the project. Typically, this will be an empty object or confirmation message indicating successful deletion.

No binary data is returned by this operation.

Dependencies

  • Requires an active connection to the Nestr API via OAuth2 authentication.
  • The node depends on having valid credentials configured in n8n for accessing the Nestr service.
  • The workspace must exist and be accessible with the provided credentials.
  • The project ID must correspond to an existing project within the specified workspace.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent project ID will result in an error.
    • Using a workspace ID that the authenticated user does not have access to will cause authorization errors.
    • Network or API downtime may cause request failures.
  • Error messages and resolutions:

    • "Project not found" — Verify the project ID is correct and exists in the specified workspace.
    • "Unauthorized" or "Access denied" — Check that the API credentials are valid and have sufficient permissions.
    • "Workspace not found" — Confirm the workspace ID is correct and accessible.
    • Timeouts or network errors — Ensure stable internet connectivity and that the Nestr API endpoint is reachable.

Links and References

Discussion