Skip to main content
Planview Customer Success Center

Move a card

POST /io/card/move

This API has a number of uses:

  • Move cards between lanes
  • Change a card's index in a lane
  • Move task cards between task lanes
  • Convert a card to a task
  • Convert a task to a card
  • Move cards to other boards

Example Requests:

Moving a single card to the end of another lane

1{
2  "cardIds":["637797483"],
3  "destination":{
4      "laneId": "637797516"
5  }
6}

Moving a card to a specific index

Note: Avoid using a specific index if possible. Operations that explicitly modify index are slower.

1{
2  "cardIds":["637797483"],
3  "destination":{
4      "laneId": "637797516",
5      "index": 2
6  }
7}

Moving multiple cards to the default drop lane on another board

1{
2  "cardIds":["637797483", "8675309"],
3  "destination":{
4      "boardId": "90210"
5  }
6}

Converting a card to a task

1{
2  "cardIds":["637797483"],
3  "destination":{
4      "cardId": "637797516"
5  }
6}

Example Success Response

200 OK




Updated 2020-01-22 @ 12:01 PM