Trello: How to Generate an Activity Report Using a Card Change Date

In an attempt to unify and automate the report on my activities in several projects, I try to create a report, similar to a graph, from several Trello boards.

An event on the timeline will be generated when the map is moved to the Run list, with the time the list was changed as the start date.

The end date remains on the current date until the card is moved to the "Finish" list, after which it will be set at the end date of this operation.

Example of activity timeline

I looked through some tools to connect Trello activity to Google Calendar so far without success:

  • Bonuses Trello: when connecting to the calendar, only dates are provided.
  • IFTTT - does not seem to provide Trello as a recipe source.
  • Zapier - provides only dates of dates and last actions as initial values
  • Ducksboard - there are no templates for this type of visualization

Ideally, an “API catalyst” like the ones listed above would be the best solution, otherwise any other suggestion on how to approach the problem using other tools is very welcome (I have little experience with d3.js).

+4
source share
1 answer

Just do it with your API, you can check the manual .

, , , " ?" .

  • Trello SDK;
  • ( read), ( );
  • Fetch/tokens/[token], memberID;
  • Fetch/members/[memberID]/ addMemberToCard,removeMemberFromCard;
  • , addMemberToCard removeMemberFromCard ;
  • !

, : Trello

: https://github.com/pistonsky/trello-activity-report

P.S. addMemberToCard removeMemberFromCard updateCard:idList To Do Done.

0

Source: https://habr.com/ru/post/1534471/


All Articles