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

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

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

taskIdstringRequiredformat: "uuid"
The id of the task.
checklistItemIdstringRequiredformat: "uuid"
The id of the checklist item.

Request

The model to update the checklist item.
namestringRequired>=0 characters<=25000 characters
The name of the checklist item.
isDonebooleanOptional
Whether the checklist item is done.
orderdouble or nullOptional
The order of the checklist item.

Response

OK
namestring>=0 characters<=25000 characters
The name of the checklist item.
isDoneboolean or null
Whether the checklist item is done.
orderdouble or null
The order of the checklist item.
idstring or nullformat: "uuid"
The id of the checklist item.
createdOnstring or nullformat: "date-time"
The date this checklist item was created.
createdBystring or nullformat: "uuid"
The id of the user who created this checklist item.
updatedOnstring or nullformat: "date-time"
The date this checklist item was last modified.
updatedBystring or nullformat: "uuid"
The id of the user who last modified this checklist item.
taskIdstring or nullformat: "uuid"
The id of the task this checklist item belongs to.