Undocumented task-list api functionality in postman documentation #742

Open
opened 2026-02-04 21:11:20 +03:00 by OVERLORD · 1 comment
Owner

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.

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.
Author
Owner

@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.

@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.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#742