GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation deletes a specific issue link in a GitLab project. It is useful for managing issue relationships by removing links between issues within a project. For example, if an issue is no longer related or linked to another issue, this operation can be used to delete that link.

Use Case Examples

  1. Deleting an issue link between two related issues in a GitLab project to clean up issue relationships.
  2. Removing an outdated or incorrect issue link from a project to maintain accurate issue tracking.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used, default is GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Path Parameters Parameters required in the request path to identify the project, issue, and issue link to delete.

Output

JSON

  • response - Response from GitLab API confirming deletion of the issue link.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the project ID, issue internal ID, and issue link ID are correct and exist in the GitLab project.
  • Verify that the API key used has sufficient permissions to delete issue links in the project.
  • Check the base URL if using a self-hosted GitLab instance to ensure it is correct.
  • Common error messages include 404 Not Found if the issue link does not exist, and 403 Forbidden if the API key lacks permissions.

Links

Discussion