update-issue-link
Modify an existing link attached to a project issue in Plane by updating its title or URL using the issue and link identifiers.
Instructions
Update an existing issue link
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue containing the link | |
| link_id | Yes | ID of the link to update | |
| project_id | Yes | ID of the project containing the issue | |
| title | No | Updated title/name for the link (optional) | |
| url | No | Updated URL (optional) |
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 update",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
},
"title": {
"description": "Updated title/name for the link (optional)",
"type": "string"
},
"url": {
"description": "Updated URL (optional)",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"link_id"
],
"type": "object"
}