Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 611 Bytes

Cards.md

File metadata and controls

28 lines (22 loc) · 611 Bytes

Trello List Cards API

Get cards related to a given list

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

Filter cards related to a given list

$api->cardlists()->cards()->filter(string $id, array $filter)

Create a card

$api->cardlists()->cards()->create($id, $name, array $params)

Archive all cards of a given list

$api->cardlists()->cards()->archiveAll(string $id)

Move all cards of a given list to another list

$api->cardlists()->cards()->moveAll(string $id, string $boardId, string $destListId)