List Checklist Items of a Task
GET/api/checklists/items
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| task_id | Number | Mandatory Task ID the checklist belongs to, must be 1 or more |
| limit | Number | optional Optional page size, 1 to 200
|
| offset | Number | optional Optional number of rows to skip
|
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"
}
]