GET /projects/{projectId}/tasks doesn't include completed
complete
yolk
A
GET /projects/{projectId}/tasks
does not include the completed
field in the the items
collection responseexpected:
{
"ok": true,
"items": [
{
"id": "TASK_ID",
"text": "TASK_CONTENT",
"parentId": "PARENT_TASK_ID",
"completed": true
}
]
}
what's returned (no
completed
on any tasks
in items
):{
"ok": true,
"items": [
...
{
"id": "TASK_ID",
"text": "TASK_CONTENT",
"parentId": "PARENT_ID"
},
...
]
}
At first I thought this was normal behavior, so I started to retrieve each task's completion status with the
GET task
route, but was quickly hit with throttling, which is to be expected since I was sending many requests, while I don't send that many while listing all project's tasks.Having this field present on the response for the collection returned from
GET /projects/{projectId}/tasks
would be ideal, as it's currently documented too.screenshots from
Photo Viewer
View photos in a modal
Log In
John at Taskade
marked this post as
complete
This has been resolved, please review and check, thanks again for reporting! yolk
CC lxcid
jaspersegers1995
please fix this :) <3