Trello API: how to move a map to another list

I have code for reading boards, lists, and maps. I would like to move cards from one list to another. I just can't figure out what Trello API docs are. Can someone provide an approximate line of the transfer card? I see moveCardToBoard, but in which list will it get? Thanks Tim

+11
source share
2 answers

You should use this URL:

PUT / 1 / cards / [card identifier or short link] / idList

Make sure you make a put request and you have the correct token with the permission entry.

+17
source

It looks like the API has changed.

You should now use: PUT / 1 / cards / {cardID}? IdList = {listID}

0
source

All Articles