Update a Checklist Item

PUT/api/checklists/items/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
id Number Checklist item unique ID
title String optional Optional Checklist item title
is_checked Number optional Optional 0 or 1
sort Number optional Optional sort value
curl -X PUT "https://yoursite.com/api/checklists/items/123" \
  -H "authtoken: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "field": "value" }'

Success-Response:

HTTP/1.1 200 OK
{ "status": 200, "messages": {"success": "The record has been saved."} }
MethodPUT
Path/api/checklists/items/{id}
GroupChecklists
Sincev1.0.0
Defined inRestApi/Controllers/ChecklistsController.php