0

You can use they query parameter completed_since=now to obtain all incomplete tasks within a project.

GET /api/1.0/projects/:projectID/tasks?completed_since=now

How can you also query based on the modified timestamp?

Andrew Noonan
  • 848
  • 6
  • 13

1 Answers1

0

When querying for tasks you can supply any combination of workspace(required for /tasks), assignee,completed_since, and modified_since to filter the results of your query.

Therefore, in order to filter the results by the modified timestamp simply supply the oldest timestamp you would like to include in the result set as the modified_since parameter.

GET /api/1.0/projects/:projectID/tasks?completed_since=now&modified_since=2015-10-26T01:02:03.004Z
Andrew Noonan
  • 848
  • 6
  • 13