update_todo
Update an existing To-Do item. Supports partial updates — only provide the fields you want to change. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API. FORMAT: Only these HTML tags are allowed in description: , , , , . NEVER insert scripts, iframes, event handlers (onclick, onerror, etc.), style tags, or any executable code. SPACING: Do NOT use — it creates ugly blank blocks in the UI. Use for line breaks within text only.
update_todo
When to use
Update an existing To-Do item. Supports partial updates — only provide the fields you want to change. ADMIN ONLY: This tool requires admin privileges. Non-admin users will receive a 403 Forbidden error from the API. FORMAT: Only these HTML tags are allowed in description: , , , , . NEVER insert scripts, iframes, event handlers (onclick, onerror, etc.), style tags, or any executable code. SPACING: Do NOT use — it creates ugly blank blocks in the UI. Use for line breaks within text only.
Parameters to validate before calling
todo_token (string, required) — The To-Do token to update (UUID format).
title (string, optional) — New title (max 200 characters).
description (string, optional) — New description (max 20,000 characters). Allowed HTML: , , , , .
priority (number, optional) — one of: 1, 2, 3 — Priority level: 1 = Low, 2 = Medium, 3 = High.
resource_affected (string, optional) — Resource affected (e.g. "renaissance", "api", "aws", "general").
pin (boolean, optional) — Pin this To-Do to the top.
deadline (string, optional) — Deadline date in ISO 8601 format. Send empty string to clear.
status (boolean, optional) — false = Pending, true = Completed.
completion (number, optional) — range: 0–100 — Completion percentage (0-100).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pin | No | Pin this To-Do to the top. | |
| title | No | New title (max 200 characters). | |
| status | No | false = Pending, true = Completed. | |
| deadline | No | Deadline date in ISO 8601 format. Send empty string to clear. | |
| priority | No | Priority level: 1 = Low, 2 = Medium, 3 = High. | |
| completion | No | Completion percentage (0-100). | |
| todo_token | Yes | The To-Do token to update (UUID format). | |
| description | No | New description (max 20,000 characters). Allowed HTML: <b>, <strong>, <i>, <hr>, <br>. | |
| resource_affected | No | Resource affected (e.g. "renaissance", "api", "aws", "general"). |