Hello friends, how are you?
I would like to inquire if there is a specific URL for updating an item in the checklist. I’ve observed that such information is not provided in the Trello Rest API documentation. Is there a solution or alternative method available?
There’s a PUT /1/cards/:idCard/checklist/:idChecklist/checkItem/:idCheckItem
route. You can update the state
to 'complete'
or 'incomplete'
by providing it in a JSON body.
This is documented here: https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-idcard-checklist-idchecklist-checkitem-idcheckitem-put
1 Like
Thank you Felix Haehnel. It would be more interesting if it is in a checklist and not on cards.