如何在 Trello API 中获取 collections ?
How to get collections in Trello API ?
我需要用 trello API 获取所有 collection 的看板
这是 link 如何创建 collection 以及它是什么
http://help.trello.com/article/1004-creating-collections-for-business-class-teams
和 link 文档
https://developers.trello.com/advanced-reference ,
但我找不到获得 collection 板
的方法
Trello 团队回答了我的问题:
Unfortunately, there's not currently a way to access collections via the API. I'll let our team know that this is something you'd be interested in...
我刚刚在此处添加了 collections 当前实施的文档:https://github.com/trello/api-docs/pull/110。
创建一个新的collection:
POST https://api.trello.com/1/organizations/{organizationID}/tags
使用参数 name
,这是您要创建的 collection 的名称。要查看某个组织存在的所有 collection:
GET https://api.trello.com/1/organizations/{organizationID}/tags
要将板添加到 collection:
POST https://api.trello.com/1/boards/{boardId}/idTags
带有参数 "value",它应该是从上面的标签端点返回的 collection 的 ID 之一。要查看板所属的 collection 的 ID 列表:
GET https://api.trello.com/1/boards/{boardId}/idTags
我需要用 trello API 获取所有 collection 的看板 这是 link 如何创建 collection 以及它是什么 http://help.trello.com/article/1004-creating-collections-for-business-class-teams 和 link 文档 https://developers.trello.com/advanced-reference , 但我找不到获得 collection 板
的方法Trello 团队回答了我的问题:
Unfortunately, there's not currently a way to access collections via the API. I'll let our team know that this is something you'd be interested in...
我刚刚在此处添加了 collections 当前实施的文档:https://github.com/trello/api-docs/pull/110。
创建一个新的collection:
POST https://api.trello.com/1/organizations/{organizationID}/tags
使用参数 name
,这是您要创建的 collection 的名称。要查看某个组织存在的所有 collection:
GET https://api.trello.com/1/organizations/{organizationID}/tags
要将板添加到 collection:
POST https://api.trello.com/1/boards/{boardId}/idTags
带有参数 "value",它应该是从上面的标签端点返回的 collection 的 ID 之一。要查看板所属的 collection 的 ID 列表:
GET https://api.trello.com/1/boards/{boardId}/idTags