Application API (v1): Move a Card with WIP Override
LeanKit's Application API v1 is deprecated. New integration projects should use our v2 API suite found here: https://success.planview.com/Planview_LeanKit/LeanKit_API/01_v2.
This method has all the same parameters as Move a Card, with the addition of a Comment in the request body. If you attempt to move a card using Move Card and get a response with a reply code of 900
, you will need to use the this API method to move the Card and provide a reason (Comment) for the WIP override. An override comment is required.
Request URL (POST)
https://{accountname}.leankit.com/kanban/api/board/{boardId}/MoveCardWithWipOverride/{cardId}/lane/{laneId}/position/{index}
Sample Request:
https://myaccount.leankit.com/kanban/api/board/256064019/MoveCardWithWipOverride/256395058/lane/256392759/position/9999
{ "Comment": "Reason to override" }
Sample Response:
Note: ReplyData contains the new Board Version after the card is moved.
{ "ReplyCode":202, "ReplyText":"The Card was moved successfully.", "ReplyData":[ 227 ] }