Task List URL
Response: HTTP 200, application/json (Hide)
POST /projects/1/task-lists
Payload:
1 2 3
{
"name": "Test Task List"
}Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
{
"single": {
"id": 1,
"class": "TaskList",
"url_path": "\/projects\/1\/task-lists\/1",
"name": "Test Task List",
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"completed_on": null,
"completed_by_id": null,
"is_completed": false,
"project_id": 1,
"created_on": 1430164275,
"created_by_id": 1,
"updated_on": 1430164275,
"updated_by_id": 1,
"start_on": null,
"due_on": null,
"position": 1,
"open_tasks": 0,
"completed_tasks": 0
}
}Response: HTTP 200, application/json (Hide)
GET /projects/1/task-lists/1
Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
{
"single": {
"id": 1,
"class": "TaskList",
"url_path": "\/projects\/1\/task-lists\/1",
"name": "Test Task List",
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"completed_on": null,
"completed_by_id": null,
"is_completed": false,
"project_id": 1,
"created_on": 1430164275,
"created_by_id": 1,
"updated_on": 1430164275,
"updated_by_id": 1,
"start_on": null,
"due_on": null,
"position": 1,
"open_tasks": 0,
"completed_tasks": 0
}
}Response: HTTP 404, text/html
GET /projects/2/task-lists/1