Plane icon

Plane

Consume Plane API

Overview

This node interacts with the Plane API to manage links associated with issues within projects. Specifically, the "Delete Link" operation allows users to delete a specific link from an issue in a project. This is useful for maintaining accurate and up-to-date issue tracking by removing outdated or incorrect links.

Common scenarios include:

  • Removing obsolete references or URLs linked to an issue.
  • Cleaning up issue data by deleting broken or irrelevant links.
  • Automating issue management workflows where links need to be programmatically removed based on certain conditions.

Example: Automatically delete a link from an issue when the linked resource is no longer valid or relevant.

Properties

Name Meaning
Project ID The unique identifier of the project containing the issue.
Issue ID The unique identifier of the issue from which the link will be deleted.
Link ID The unique identifier of the link to be deleted from the specified issue.

Output

The output JSON contains the response from the Plane API after attempting to delete the specified link. Typically, this will be an empty object or confirmation of deletion if successful. If the deletion fails, the output may contain error information.

No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the Plane API via an API key credential configured in n8n.
  • The node depends on the Plane API endpoints for projects, issues, and links.
  • Proper permissions are required on the Plane API side to delete links.

Troubleshooting

  • Common Issues:

    • Invalid or missing Project ID, Issue ID, or Link ID parameters will cause the request to fail.
    • Insufficient permissions or invalid API credentials can result in authorization errors.
    • Attempting to delete a non-existent link will likely return a not found error.
  • Error Messages:

    • "404 Not Found": The specified project, issue, or link does not exist. Verify IDs.
    • "401 Unauthorized" or "403 Forbidden": Check that the API key credential is valid and has sufficient permissions.
    • Network or connectivity errors: Ensure the Plane API service is reachable from your environment.
  • Resolution Tips:

    • Double-check all input IDs for correctness.
    • Confirm API credentials and permissions.
    • Use the "Get All Links" operation to list existing links before attempting deletion.

Links and References

Discussion