linear_getIssueById
Retrieve a specific issue from the Linear project management system using its unique ID or identifier, such as ABC-123, for efficient issue tracking and management.
Instructions
Get a specific issue by ID or identifier (e.g., ABC-123)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID or identifier of the issue (e.g., ABC-123) |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID or identifier of the issue (e.g., ABC-123)",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}