update-intake-issue
Modify existing intake issues in Plane projects by updating title, description, priority, or other fields to keep project information current.
Instructions
Update an existing intake issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description_html | No | Updated HTML description (optional) | |
| issue_id | Yes | ID of the intake issue to update | |
| name | No | Updated title (optional) | |
| priority | No | Updated priority (optional) | |
| project_id | Yes | ID of the project containing the intake issue |
Input Schema (JSON Schema)
{
"properties": {
"description_html": {
"description": "Updated HTML description (optional)",
"type": "string"
},
"issue_id": {
"description": "ID of the intake issue to update",
"type": "string"
},
"name": {
"description": "Updated title (optional)",
"type": "string"
},
"priority": {
"description": "Updated priority (optional)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project containing the intake issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}