I need to be able to expose who created a task in asana via the API. Currently I am only getting back who created comments on the task, who is currently assigned to the task, and who is following the task. This leaves me guessing who actually created the task. Thanks!
相关问题
- 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
Asana support got back to me first by email so I will answer this for anyone else. Bit of a workaround.
Api calls to:
/tasks/{task-id}/stories
/projects/{project-id}/stories
These will give you the system messages generated when assigning a task and the comments on the task. If the task has been reassigned to someone you will have something like:
Using the fact that it is a type: system, not type: comment, and matching on the text field, you can find out the id of the creator.