---
title: "Updates a checklist item for a task with the specified id."
method: PUT
path: "/tasks/{taskId}/checklistitems/{checklistItemId}"
tags: ["checklistItems"]
---

# Updates a checklist item for a task with the specified id.

`PUT /tasks/{taskId}/checklistitems/{checklistItemId}`

<Check title="Required Permissions" icon="key">The required permissions depend on the base type of the task. If the task is a project task, the user must have either `project-master-data:write` permissions or be assigned to the task. For a user's private task, no special permissions are required.</Check>

## Path parameters

- `taskId` string, uuid, required
- `checklistItemId` string, uuid, required

## Headers

- `Authorization` string, required

## Request body

- ChecklistItemForm
  - `isDone` boolean — Whether the checklist item is done.
  - `name` string, required — The name of the checklist item.
  - `order` number, double, nullable — The order of the checklist item.

## Response `200`

OK

- ChecklistItem
  - `isDone` boolean — Whether the checklist item is done.
  - `name` string, required — The name of the checklist item.
  - `order` number, double, nullable — The order of the checklist item.
  - `id` string, uuid — The id of the checklist item.
  - `createdOn` string, date-time — The date this checklist item was created.
  - `createdBy` string, uuid — The id of the user who created this checklist item.
  - `updatedOn` string, date-time — The date this checklist item was last modified.
  - `updatedBy` string, uuid — The id of the user who last modified this checklist item.
  - `taskId` string, uuid — The id of the task this checklist item belongs to.

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.net/awork-io/apis/api-v1-reference.md) · [All operations](https://skmtc.net/awork-io/apis/api-v1-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/awork-io/api-v1-reference/versions/f784a53f60df/schema)
