v1
latestOpenAPI 3.1.02026-07-24172151607.6 KBTask Checklists
Create Checklist Item
Add a line item to a task checklist.
post/v2/checklist/{checklist_id}/checklist_item
Path parameters
checklist_idstring required
Example:b955c4dc
b8a8-48d8-a0c6-b4200788a683 (uuid)
Request body
Example request
{
"name": "Checklist Item",
"assignee": 183
}Response
Example response
{
"checklist": {
"id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683",
"task_id": "9hv",
"name": "Checklist",
"date_created": "1567711563204",
"orderindex": 0,
"resolved": 0,
"unresolved": 1,
"items": [
{
"id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6f",
"name": "Checklist Item",
"orderindex": 0,
"assignee": {
"id": 183,
"username": "John Doe",
"email": "example@email.com",
"color": "#827718",
"initials": "JD",
"profilePicture": "https://attachments.clickup.com/profilePictures/183_nx1.jpg"
},
"resolved": false,
"parent": null,
"date_created": "1567711566859",
"children": []
}
]
}
}