How to retrieve all archived cards on a board thro

2019-04-06 20:34发布

问题:

The following question was asked on the Trello API board. I thought I'd add it here.

How can I obtain all archived cards on a board?

回答1:

You can achieve this through use of the [filter] option on the boards endpoint:

/1/boards/[boardId]/cards?filter=closed&key=[your appKey]

It's the closed=true part that does the trick. It directs the API to only return cards which have been archived. I'm fairly certain it includes cards in archived lists, but I'm not 100% sure.



标签: rest trello