mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
Undocumented task-list api functionality in postman documentation #742
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 @georgiedekker on GitHub (Jun 25, 2025).
The task-list seems to be necessary for task creation in a card. Please document in postman documentation.
Not documented at all in https://documenter.getpostman.com/view/3360622/2sB2cRCPpU#8152089c-6236-451c-9d6f-27f10b3bb866
Create Task List
curl --location 'http://{HOST}:{PORT}/api/cards/{CARD_ID}/task-lists'
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {TOKEN}
--data '{
"position":1,
"name":"Task List",
"showOnFrontOfCard":true
}'
Create Task in Task List
curl --location 'http://{HOST}:{PORT}/api/task-lists/{TASK_LIST_ID}/tasks'
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {TOKEN}
--data '{
"position":1,
"name":"Task Name",
"isCompleted":false
}'
Get Task List
curl --location 'http://{HOST}:{PORT}/api/task-lists/{TASK_LIST_ID}'
--header 'Authorization: Bearer {TOKEN}'
Get Card
curl --location 'http://{HOST}:{PORT}/api/cards/{CARD_ID}'
--header 'Authorization: Bearer {TOKEN}'
//This call will already return the task list, and the tasks and in the tasks it states which task list it belongs to.
@georgiedekker commented on GitHub (Jul 4, 2025):
Going through more api items I find many payloads are not complete or up to date. please improve the postman documentation.