updateIssue
Modify Backlog issue details including status, description, and comments using the issue ID to track project tasks and updates.
Instructions
Backlog課題を更新します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | 更新時のコメント | |
description | No | 課題の説明 | |
issueId | Yes | 課題のID(例: PROJECT-1) | |
status | No | 新しいステータス |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "更新時のコメント",
"type": "string"
},
"description": {
"description": "課題の説明",
"type": "string"
},
"issueId": {
"description": "課題のID(例: PROJECT-1)",
"type": "string"
},
"status": {
"description": "新しいステータス",
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}