Is there a way to access the items in a workspace's inbox via the API? I'm primarily interested in the unread count, but could make good use out of any unhidden items as well.
相关问题
- get asana project id
- Asana tag API query often misses newly created Tag
- Create an external link in a comment in Asana
- How to set custom_fields that has an enum_value us
- How can I add guests or members to projects create
相关文章
- get asana project id
- Asana tag API query often misses newly created Tag
- 在体位更新URL没有返回(Update URL in Asana returns nothing)
- 如何通过用户嘉尚获得任务(How to get tasks by user in Asana)
- 如何通过API在嘉尚项目内容设置丰富文本(How to Set Rich Text in Asana
- 在故事的用户提及的超链接(Hyperlink Mentions of Users in Storie
- 在阵列中存储的唯一任务ID(Storing only task id in an array)
- Create an external link in a comment in Asana
At the moment you can't do this with a simple API call.
You might be able to do it by pulling down all projects, and then pulling down all the tasks for each project, storing that in a local database, and then search for tasks with assignee_status set to "inbox" (https://asana.com/developers/api-reference/tasks). But that is probably not the answer you want!