Update Issue Checklist Item
issue_update_checklist_itemUpdate one checklist item in a Yandex Tracker issue: mark as checked, rename, set assignee, or set/clear deadline. Unspecified fields remain unchanged.
Instructions
Update one checklist item of a Yandex Tracker issue - to check it off, rename it, or set an assignee or a deadline. Only the fields you pass change, and null leaves a field as it is: use clear_assignee / clear_deadline to remove a value. Item ids come from issue_get_checklist. Returns the whole checklist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | New checklist item text (Markdown/YFM supported). Omit to leave the current text unchanged. Example: 'Get sign-off from legal.' | |
| checked | No | Whether the checklist item is checked off. Omit to leave unchanged. Example: true | |
| assignee | No | User login or ID (uid) to assign the checklist item to. Omit to leave unchanged; pass `clear_assignee` to remove the current one. Example: 'i.ivanov' | |
| deadline | No | Deadline for the checklist item. Omit to leave unchanged; pass `clear_deadline` to remove the current one. `deadline_type` (or `deadlineType`) is 'date' or 'quarter'. Example: {'date': '2026-08-20T00:00:00', 'deadline_type': 'date'}. | |
| issue_id | Yes | Issue ID in the format '<project>-<id>', like 'SOMEPROJECT-1' | |
| clear_assignee | No | Remove the checklist item's assignee. Cannot be combined with `assignee`. Example: true | |
| clear_deadline | No | Remove the checklist item's deadline. Cannot be combined with `deadline`. Example: true | |
| checklist_item_id | Yes | Checklist item ID, as returned in the `id` field of an item by issue_get_checklist. Example: '5f8b2c1e4c3a2d001a7e9b1c'. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |