update-issue
Modify existing project issues by updating titles, descriptions, priorities, states, or assignees to keep project tracking current and accurate.
Instructions
Update an existing issue in a project, delete just update the issue title with 'delete' or 'remove'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Updated array of user IDs to assign to this issue (optional) | |
description_html | No | HTML description of the issue (required by Plane API) | |
issue_id | Yes | ID of the issue to update | |
name | No | Updated title of the issue (optional) | |
priority | No | Updated priority of the issue (optional) | |
project_id | Yes | ID of the project containing the issue | |
state_id | No | Updated state ID of the issue (optional) |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "Updated array of user IDs to assign to this issue (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"description_html": {
"description": "HTML description of the issue (required by Plane API)",
"type": "string"
},
"issue_id": {
"description": "ID of the issue to update",
"type": "string"
},
"name": {
"description": "Updated title of the issue (optional)",
"type": "string"
},
"priority": {
"description": "Updated priority of the issue (optional)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
},
"state_id": {
"description": "Updated state ID of the issue (optional)",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}