update-state
Modify an existing state within a Plane project by updating its name, description, color, or group to reflect changes in project workflow status.
Instructions
Update an existing state in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Updated color code for the state (optional) | |
| description | No | Updated description of the state (optional) | |
| group | No | Updated state group (optional) | |
| name | No | Updated name of the state (optional) | |
| project_id | Yes | ID of the project containing the state | |
| state_id | Yes | ID of the state to update |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Updated color code for the state (optional)",
"type": "string"
},
"description": {
"description": "Updated description of the state (optional)",
"type": "string"
},
"group": {
"description": "Updated state group (optional)",
"enum": [
"unstarted",
"started",
"completed",
"cancelled"
],
"type": "string"
},
"name": {
"description": "Updated name of the state (optional)",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the state",
"type": "string"
},
"state_id": {
"description": "ID of the state to update",
"type": "string"
}
},
"required": [
"project_id",
"state_id"
],
"type": "object"
}