문제

Asana lack of reporting is bugging my team, so we are trying to use the asana's API to generate at least basic reporting.

Is it possible to get the task logs that are shown in the task details?

In the task details I can see this:
User created task.Mar 25 User added to proj1.Mar 25 User moved from proj1 to label2 (proj1).Mar 25 User assigned to UserX.9:22am

How can I get it?

도움이 되었습니까?

해결책

As mentioned in the documentation you can get what we call the "stories" for an object using GET /tasks/:id/stories. Note that the creation task we display in the app is actually displayed from the task data, and not a story in its own right: you can determine this by looking at the value of created_at for the task itself using GET /tasks/:id?opt_fields=created_at, for instance.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top