Actions63
- Comment Actions
- Cycle Actions
- Cycle Issue Actions
- 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 issue property options within a project management context. Specifically, for the Issue Property Option resource and the Delete operation, it deletes a specified option from an issue property in a given project.
Use cases include:
- Removing outdated or incorrect options from custom properties assigned to issues.
- Cleaning up or maintaining the integrity of issue property options as project requirements evolve.
For example, if you have a dropdown property on issues representing priority levels, and you want to remove an obsolete priority option, this node operation will delete that specific option by its ID.
Properties
Name | Meaning |
---|---|
Project ID | The unique identifier of the project containing the issue property option to delete. |
Property ID | The unique identifier of the issue property to which the option belongs. |
Option ID | The unique identifier of the specific option under the issue property to be deleted. |
Output
The output JSON contains the response from the Plane API after attempting to delete the specified issue property option. Typically, for a delete operation, this may be an empty object or confirmation of deletion.
No binary data is involved in this operation.
Dependencies
- Requires an active connection to the Plane API via an API key credential configured in n8n.
- The node uses internal helper functions to make authenticated HTTP requests to the Plane API endpoints.
- The user must provide valid IDs for the project, issue property, and option to successfully perform the deletion.
Troubleshooting
- Invalid or missing IDs: If any of the
Project ID
,Property ID
, orOption ID
are incorrect or missing, the API call will fail. Verify these IDs exist and are correct. - Permission errors: Ensure the API key used has sufficient permissions to delete issue property options in the target project.
- Network or API errors: Check network connectivity and Plane API status if requests time out or return server errors.
- Error messages: The node may throw errors indicating failure to delete due to invalid parameters or authorization issues. Review error messages carefully and confirm all inputs and credentials.
Links and References
- Plane API Documentation (general reference for API endpoints)
- n8n documentation on creating custom nodes