List Checklist Items of a Task

GET/api/checklists/items

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
task_id Number Mandatory Task ID the checklist belongs to, must be 1 or more
limit Number optional Optional page size, 1 to 200

default: 50

offset Number optional Optional number of rows to skip

default: 0

curl -X GET "https://yoursite.com/api/checklists/items" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

HTTP/1.1 200 OK
[
  {
    "id": "7",
    "title": "Attach the signed SOW",
    "is_checked": "0",
    "task_id": "42",
    "sort": "1000",
    "new_sort": "1000",
    "client_id": "5"
  }
]
MethodGET
Path/api/checklists/items
GroupChecklists
Sincev1.0.0
Defined inRestApi/Controllers/ChecklistsController.php