Actions63
- Issue Actions
- Comment Actions
- Cycle Actions
- Cycle Issue Actions
- Issue Attachment Actions
- Issue Property Actions
- Issue Property Option Actions
- Issue Property Value Actions
- Issue State Actions
- Label Actions
- Link Actions
- Member Actions
- Module Actions
- Module Issue Actions
- Project Actions
Overview
This node interacts with the Plane API to manage issues within project cycles. Specifically, for the Cycle Issue - Remove Issue operation, it removes a specified issue from a given cycle in a project.
Typical use cases include:
- Automating project management workflows by dynamically removing issues from development or release cycles.
- Cleaning up cycles by detaching irrelevant or completed issues.
- Integrating with other tools to maintain accurate cycle contents based on external triggers.
For example, if an issue is resolved or no longer relevant to a current sprint (cycle), this node can be used to remove it automatically from that cycle.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project containing the cycle and issue. |
| Cycle ID | The unique identifier of the cycle from which the issue will be removed. |
| Issue ID | The unique identifier of the issue to remove from the specified cycle. |
Output
The output JSON contains the response from the Plane API after attempting to remove the issue from the cycle. This typically includes confirmation of deletion or details about the removed cycle-issue relationship.
No binary data output is involved in this operation.
Dependencies
- Requires an active Plane API connection configured with a valid API key credential.
- The node uses HTTP DELETE requests to the Plane API endpoint
/projects/{projectId}/cycles/{cycleId}/cycle-issues/{issueId}. - Proper permissions on the Plane API are necessary to modify cycles and issues.
Troubleshooting
Common Issues:
- Invalid or missing Project ID, Cycle ID, or Issue ID parameters will cause the API call to fail.
- Insufficient permissions or invalid API credentials may result in authorization errors.
- Attempting to remove an issue not currently part of the cycle may return an error or no effect.
Error Messages:
- "404 Not Found" — The specified project, cycle, or issue does not exist or the issue is not part of the cycle.
- "401 Unauthorized" — API key is missing or invalid; check your Plane API credentials.
- "400 Bad Request" — Parameters are malformed or missing; verify all required IDs are correctly provided.
To resolve these errors, ensure all IDs are correct, the API key is valid, and the user has appropriate access rights.
Links and References
- Plane API Documentation (for detailed API endpoints and authentication)
- n8n documentation on HTTP Request Node for understanding underlying request mechanics