How to retrieve all archived cards on a board thro

2019-04-06 20:39发布

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?

标签: rest trello
1条回答
爱情/是我丢掉的垃圾
2楼-- · 2019-04-06 20:57

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.

查看更多
登录 后发表回答