When was checklist checked?

I am working on a powerup and I would like to know the date/time when a checklist item was checked so that I can incorporate that into a burndown analysis. But it looks like maybe that is not possible at the moment? I don’t see that data in the checklist data returned by the checklist endpoint.

Ah. Well, this information is not in the checklist data, but it is captured as an action so can be retrieved from the actions endpoint. With ‘filter=“updateCheckItemStateOnCard”’, only these actions will be returned, and the action contains the complete checkList and checkItem objects so you can verify that the checklist item was checked (as opposed to unchecked) by the triggering action. Pretty sweet!

1 Like

Although the action’s body contains the timestamp, you can also use the ID of the action as a timestamp for when the action occurred: MongoDB ObjectId to Timestamp Converter

1 Like