Plane icon

Plane

Consume Plane API

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 ID or State ID will 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.
  • 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

Discussion