get_issue
Retrieve detailed information on a specified Redmine issue by providing the issue ID, with options to include descriptions, notes, and attachments for comprehensive insights.
Instructions
取得指定的 Redmine 議題詳細資訊
Args:
issue_id: 議題 ID
include_details: 是否包含詳細資訊(描述、備註、附件等)
Returns:
議題的詳細資訊,以易讀格式呈現
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_details | No | ||
issue_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_details": {
"default": true,
"title": "Include Details",
"type": "boolean"
},
"issue_id": {
"title": "Issue Id",
"type": "integer"
}
},
"required": [
"issue_id"
],
"title": "get_issueArguments",
"type": "object"
}