latestOpenAPI 3.1.02026-08-20723176475.4 KB
c2b39b2c43c5
Tasks Checklist
Update a checklist of a subtask
Replace name, completion state and assignee of the given subtask checklist item. Every field is applied as sent, so omitting assigneeId unassigns the item.
put/v1/tasks/{taskId}/subtasks/{subtaskId}/checklists/{checklistId}
Path parameters
taskIdinteger required
ID of the parent task
subtaskIdinteger required
ID of the subtask
checklistIdinteger required
ID of the checklist item to update
Headers
X-Org-Idinteger required
Organization ID
Request body
Example request
{
"checkListName": "Review the API contract",
"completed": true,
"assigneeId": 42
}Response
Subtask checklist updated successfully
Example response
{
"success": true,
"message": "Operation completed successfully",
"code": 200,
"timestamp": "2023-01-01T12:00:00Z"
}