如何获取项目两个日期之间的所有任务?

How to get all the tasks between two dates for a project?

作为一项要求,我想获得在任意两个日期之间创建的所有任务(对于一个项目)。这些任务完成与否并不重要

我查看了任务 API,其中有一个查询部分讨论了

completed_since: Only return tasks that are either incomplete or that have been completed since this time.
modified_since: Only return tasks that have been modified since the given time.

我还查看了我的 Asana 仪表板,它支持

等查询

现在这也不让我按我的要求查询。

问题 - 我需要什么 query/API 有效载荷才能 运行 获得 2 个日期之间的所有任务(对于一个项目)

无法查询您想要的任务 - 但是,您可以查询所有任务,然后按 created_at 价值。所以,例如GET /projects/1234/tasks?opt_fields=name,completed_at,...,然后迭代 select 您想要的那些。效率不是很高,但目前可能是最好的。