get-issue-link
Retrieve detailed information about a specific issue link within a Plane project by providing the project ID, issue ID, and link ID.
Instructions
Get detailed information about a specific 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 retrieve | |
| 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 retrieve",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"link_id"
],
"type": "object"
}