delete_issue_link
Remove a link between GitLab issues by providing the project ID, issue internal ID, and issue link ID to disconnect related issues.
Instructions
Delete an issue link
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of a project's issue | |
| issue_link_id | Yes | The ID of an issue relationship |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "The internal ID of a project's issue",
"type": "number"
},
"issue_link_id": {
"description": "The ID of an issue relationship",
"type": "number"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid",
"issue_link_id"
],
"type": "object"
}