create-issue-link
Add external links to Plane.so issues by providing the project ID, issue ID, link title, and URL to connect relevant resources directly to project management workflows.
Instructions
Create a new external link for an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue to add link to | |
| project_id | Yes | ID of the project containing the issue | |
| title | Yes | Title/name for the link | |
| url | Yes | The URL to link to |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to add link to",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
},
"title": {
"description": "Title/name for the link",
"type": "string"
},
"url": {
"description": "The URL to link to",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"title",
"url"
],
"type": "object"
}