Checklist Items (LP Classic)

This documentation is for LiquidPlanner Classic: app.liquidplanner.com

Checklist Items are found on tasks, events and milestones. You can view, create, update and delete checklist items via API. Updating checklist items includes reassigning and reordering checklist items, marking them done and not done and changing their names.

Example: Get checklist items list for a specific task.

% curl https://app.liquidplanner.com/api/v1/workspaces/:id/tasks/:id/checklist_items
[
    {
        "sort_order": 0,
        "name": "do this",
        "owner_id": ###,
        "completed": true,
        "completed_by": ###,
        "completed_at": "2017-11-30T02:38:04+00:00",
        "item_id": ###,
        "space_id": ###,
        "created_by": ###,
        "updated_by": ###,
        "created_at": "2017-11-29T00:33:07+00:00",
        "updated_at": "2017-11-29T00:38:04+00:00",
        "type": "ChecklistItem",
        "id": 14580549
    },
    {
        "sort_order": 1,
        "name": "do that",
        "owner_id": ###,
        "completed": false,
        "completed_by": 0,
        "completed_at": null,
        "item_id": ###,
        "space_id": ###,
        "created_by": ###,
        "updated_by": ###,
        "created_at": "2017-11-29T00:33:14+00:00",
        "updated_at": "2017-11-29T00:37:57+00:00",
        "type": "ChecklistItem",
        "id": 14580550
    }
]