{ "opencollection": "1.0.0", "info": { "name": "Kanban Tool API v3 Attachments Tasks API", "version": "3.0.0" }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "Search tasks", "type": "http" }, "http": { "method": "GET", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/search.json" }, "docs": "Search tasks" }, { "info": { "name": "Get task overview", "type": "http" }, "http": { "method": "GET", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/:task_id/preload.json", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Get task overview" }, { "info": { "name": "Get task with full details", "type": "http" }, "http": { "method": "GET", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/:task_id.json", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Get task with full details" }, { "info": { "name": "Update task", "type": "http" }, "http": { "method": "PATCH", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/:task_id.json", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update task" }, { "info": { "name": "Create comment", "type": "http" }, "http": { "method": "POST", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/:task_id/comments.json", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create comment" }, { "info": { "name": "Delete comment", "type": "http" }, "http": { "method": "DELETE", "url": "https://YOUR_DOMAIN.kanbantool.com/api/v3/tasks/:task_id/comments/:comment_id.json", "params": [ { "name": "task_id", "value": "", "type": "path" }, { "name": "comment_id", "value": "", "type": "path" } ] }, "docs": "Delete comment" } ] } ], "bundled": true }