delete-issue-link
Remove an external link from an issue in Plane project management by specifying the project ID, issue ID, and link ID to maintain clean issue tracking.
Instructions
Delete an external link from an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue containing the link | |
| link_id | Yes | ID of the link to delete | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue containing the link",
"type": "string"
},
"link_id": {
"description": "ID of the link to delete",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"link_id"
],
"type": "object"
}