trello api更新checkitem状态

时间:2012-12-20 22:29:59

标签: api state trello

我想使用Trello API来更新checkItem的状态。

这是我的PUT:

网址:cards / 50d3791447d8a71f52000243 / checklist / 50d3841d65296725520002a0 / checkItem / 50d384e9c027149d3300074b / state

字段:idCheckList = 50d3841d65296725520002a0& idCheckItem = 50d384e9c027149d3300074b& value = true

以下是API参考:

https://trello.com/docs/api/card/index.html#put-1-cards-card-id-or-shortlink-checklist-idchecklist-checkitem-idcheckitem-state

其他所有请求都是正确的,但是这有问题,我不知道:(

2 个答案:

答案 0 :(得分:3)

PUT /1/cards/[card id or shortlink]/checklist/[idChecklist]/checkItem/[idCheckItem]/state is the URI.  

https://api.trello.com/1/cards/[card id]/checklist/[checklist id]/checkItem/[checkitem id]/state?key=[your api key]&token=[your trello token]&value=false

这将返回200 OK并将checkitem更新为不完整/未选中。

答案 1 :(得分:0)

我不得不在邮递员中放置此网址以更新(检查)我的清单项目:

https://api.trello.com/1/cards/123myCard/checkItem/123myItem?state=complete&key=123myKey&token=123myToken

trello developer doc reference