get-issue
Retrieve detailed information about a specific project issue using project and issue IDs to access comprehensive issue data for project management.
Instructions
Get detailed information about a specific issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ID of the issue to retrieve | |
project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to retrieve",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}