Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trello API: determine when a card changed lists?

I'm considering the feasibility of doing simple reporting on Trello data. My quick review of the API documentation has left me with a question.

Can I use the Trello API to determine when a given card (part of a given board) changed lists?

like image 800
lance Avatar asked Mar 21 '12 20:03

lance


People also ask

Can you see the history of a Trello card?

Trello Card History. View a Trello card's description, name, and points histories, which are not available through the standard Trello interface. The Trello Card History extension provides quick and easy access to vital historical information for a Trello story card's Description and Name.

Can Trello count cards in list?

Trello Card Counter reveals many useful insights into your Trello boards by counting the number of cards in each list, by counting the total number of cards across yours boards and by calculating the average number of cards per list.

How do I see Trello board history?

Selecting the "Load more activity" link at the bottom of the activity feed will open a pop-up window that lets you view all of the activity on the board since the board's creation.

How do I search by due date in Trello?

To access this functionality, click “Show Menu” on your Trello board then click “Search Cards.” You can also press the “F” key to instantly pull up this menu. You'll then see the options to search on this specific board by labels, members assigned to cards, due dates, and keywords.


1 Answers

If you get the actions list for a card, and filter it to only include updates to the idList, something like this:

GET /1/cards/4f429d592aa6beb467155e9a/actions?filter=updateCard:idList
             ^ replace with card id ^ 

... then you can examine the date field on the returned actions to determine when the card changed lists.

like image 74
Daniel LeCheminant Avatar answered Nov 03 '22 23:11

Daniel LeCheminant