update_initiative
Update an initiative in Plane by its unique ID, setting fields like name, description, dates, state, or lead. Modify initiative details directly via API.
Instructions
Update an initiative by ID.
Args: initiative_id: UUID of the initiative name: Initiative name description_html: HTML description of the initiative start_date: Initiative start date (ISO 8601 format) end_date: Initiative end date (ISO 8601 format) logo_props: Logo properties dictionary state: Initiative state (DRAFT, PLANNED, ACTIVE, COMPLETED, CLOSED) lead: UUID of the user who leads the initiative
Returns: Updated Initiative object
Raises: ToolError: if the initiatives feature is disabled. When disabled, the initiative is an "Initiative" work item — the error gives the steps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lead | No | ||
| name | No | ||
| state | No | ||
| end_date | No | ||
| logo_props | No | ||
| start_date | No | ||
| initiative_id | Yes | ||
| description_html | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| lead | No | ||
| name | Yes | ||
| state | No | ||
| end_date | No | ||
| workspace | Yes | ||
| created_at | No | ||
| deleted_at | No | ||
| logo_props | Yes | ||
| start_date | No | ||
| updated_at | No | ||
| description | No | ||
| description_html | No | ||
| description_binary | No | ||
| description_stripped | No |