Trello API:从卡片中检索列表名称

Trello API: Retrieve list name from a card

我正在使用 Trello 的 API,我正在尝试检索已定义卡片列表的列表名称。

如果我这样做

https://api.trello.com/1/cards/{idCard}?key={mykey}&token={mytoken}

这个 returns 我用 Id 定义的关于卡的所有信息,并给了我 idList。

如何通过一次查询获取卡片列表的列表名称?

有类似于 wordpress 的东西可以让用户使用查询中的 _embed 标签检索 json 中嵌入的所有信息?

谢谢

勾选the official document of /cards/{id}/{field}。您可以获得这样的任何字段,如果是 idList:

https://api.trello.com/1/cards/{idCard}/idList?key={mykey}&token={mytoken}

另一种方式:

https://api.trello.com/1/cards/{idCard}/list?key={mykey}&token={mytoken}&fields=id