v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Task Checklists

Edit Checklist Item

Update an individual line item in a task checklist.

You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.

put/v2/checklist/{checklist_id}/checklist_item/{checklist_item_id}

Path parameters

checklist_idstring required
Example:b955c4dc

b8a8-48d8-a0c6-b4200788a683 (uuid)

checklist_item_idstring required
Example:21e08dc8

e491-47f5-9fd8-d1dc4cedcc6f (uuid)

Request body

namestring
assigneestring nullable
resolvedboolean
parentstring nullable

To nest a checklist item under another checklist item, include the other item's checklist_item_id.

Example request

{
  "name": "Updated Checklist Item",
  "assignee": null,
  "resolved": true,
  "parent": null
}

Response

Example response

{
  "checklist": {
    "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683",
    "task_id": "9hv",
    "name": "Checklist",
    "date_created": "1567711563204",
    "orderindex": 0,
    "resolved": 1,
    "unresolved": 0,
    "items": [
      {
        "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6f",
        "name": "Updated Checklist Item",
        "orderindex": 0,
        "assignee": null,
        "resolved": true,
        "parent": null,
        "date_created": "1567711566859",
        "children": []
      }
    ]
  }
}