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 "Issue State" resource of the Plane API, specifically supporting operations to manage issue states within a project. The "Delete" operation allows users to remove an existing issue state from a specified project.
Use cases for this node include automating project management workflows where issue states need to be programmatically cleaned up or removed, such as deleting obsolete or incorrect states in a project's workflow. For example, if a project has a deprecated status that should no longer be used, this node can delete that state by specifying its ID and the project it belongs to.
Properties
| Name | Meaning |
|---|---|
| Project ID | The ID of the project containing the issue state to delete. This is required. |
| State ID | The ID of the specific issue state to delete within the project. This is required. |
Output
The output of the delete operation typically contains the response from the Plane API after attempting to delete the issue state. This usually includes confirmation of deletion or details about the deleted state. The output is returned as JSON data.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Plane API.
- Requires an API authentication token credential configured in n8n to authorize requests.
- The node uses internal helper functions to make HTTP requests to the Plane API endpoints.
Troubleshooting
Common issues:
- Providing an invalid or non-existent
Project IDorState IDwill result in errors from the API indicating the resource was not found. - Insufficient permissions or missing API credentials will cause authorization errors.
- Network connectivity issues may prevent successful API calls.
- Providing an invalid or non-existent
Error messages:
"Resource not found"or similar indicates the provided IDs do not correspond to existing resources."Unauthorized"or"Authentication failed"suggests missing or invalid API credentials.- To resolve these, verify the correctness of the IDs, ensure the API key is valid and properly configured, and check network access.
Links and References
- Plane API Documentation (general reference for API endpoints and usage)
- n8n documentation on HTTP Request Node for understanding how API calls are made internally.