mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
[Bug]: List Move Cards API Return E_NOT_FOUND #887
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @anditakaesar on GitHub (Jan 4, 2026).
Where is the problem occurring?
I encountered the problem while interacting with the server (Backend).
Server version: 2.0.0-rc.4
What browsers are you seeing the problem on?
No response
Current behavior
I tried to call
POST /api/lists/:id/move-cardsusing listId that are type "closed". It always returned E_NOT_FOUND/List not found.The list should be exists, verified by calling GET /api/lists/:id
Desired behavior
Expected: Moves all cards from a closed list to an archive list.
Steps to reproduce
Other information
Planka (self-hosted): ghcr.io/plankanban/planka:2.0.0-rc.4
Client: Postman
@meltyshev commented on GitHub (Jan 11, 2026):
Hi! Thanks for reporting this. I think I know what's wrong here - the id in the URL and the
listIdin the request body are the same, but the second one should be the id of the target list (the list the cards are moved to). For now, that should always be the archive-type list, which you can find when fetching the whole board via the API. I agree it's a bit odd to require this id, since there can only be one archive list and there's no real need to pass it. That said, we plan to support moving cards to other list types in the future :)