cdaguerre/php-trello-api

How to move a task from one list to another list

hoangnghia opened this issue · 1 comments

Hi Mr.!
How to move a task from one list to another list
I just saw move all task from one list to another list.
Thank!

You can update the list id of one card using the card api, like so:
$client->api('card')->update($trelloCardId, ['idList' => $trelloListId, 'pos'=>$newOrder]);