Update Checklist Item
PUT/api/tasks/{task_id}/checklist/{item_id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| task_id | Number | Task unique ID. |
| item_id | Number | Checklist item ID. |
| description | String | optional Optional Updated description. |
| finished | Number | optional Optional 0=unchecked, 1=checked. |
| assigned | Number | optional Optional Staff ID to assign. |
| list_order | Number | optional Optional Sort order. |
curl -X PUT "https://yoursite.com/api/tasks/123/checklist/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "field": "value" }' Success-Response:
HTTP/1.1 200 OK
{
"status": true,
"message": "Checklist item updated successfully"
}