Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 534 Bytes

Checklists.md

File metadata and controls

23 lines (18 loc) · 534 Bytes

Trello Card Checklists API

Get checklists related to a given card

$api->cards()->checklists()->all(string $id, array $params)

Add a checklist to a given card

$api->cards()->checklists()->create(string $id, array $params)

Remove a given checklist from a given card

$api->cards()->checklists()->remove(string $id, string $checklistId)

Get a given card's checklist item states

$api->cards()->checklists()->itemStates(string $id, array $params)