Gitlab issues api - historical information

I would like to use the gitlab issues api to find out if a particular issue, at a particular point in time, had a particular label applied.

i.e. I don’t want to know if it currently has that label, only if it did have the label at a given point in time.

I suspect this is not possible, but if anyone knows a way I’d be very grateful for any help!

It is actually doable, with the label events API :slight_smile:

I randomly take this issue from the Gitlab project as example. If you go to the related API page, you will see all the events about all the labels, so you only need to filter by the label.id or label.name property

1 Like

Amazing! Thank you

2 Likes