update_state
Update an existing state in a project by providing its ID and optional fields such as name, color, and group.
Instructions
Update a state by ID.
Args: project_id: UUID of the project state_id: UUID of the state name: State name color: State color (hex color code) description: State description sequence: State sequence order group: State group (e.g., backlog, unstarted, started, completed, cancelled) is_triage: Whether this is a triage state default: Whether this is the default state external_source: External system source name external_id: External system identifier
Returns: Updated State object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| color | No | ||
| group | No | ||
| default | No | ||
| sequence | No | ||
| state_id | Yes | ||
| is_triage | No | ||
| project_id | Yes | ||
| description | No | ||
| external_id | No | ||
| external_source | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| name | Yes | ||
| color | Yes | ||
| group | No | ||
| default | No | ||
| project | No | ||
| sequence | No | ||
| is_triage | No | ||
| workspace | No | ||
| created_at | No | ||
| created_by | No | ||
| deleted_at | No | ||
| updated_at | No | ||
| updated_by | No | ||
| description | No | ||
| external_id | No | ||
| external_source | No |