{ "opencollection": "1.0.0", "info": { "name": "Lumos REST AccessPolicies Tasks API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.lumos.com/tasks" }, "docs": "List tasks" }, { "info": { "name": "Get task details", "type": "http" }, "http": { "method": "GET", "url": "https://api.lumos.com/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Get task details" }, { "info": { "name": "Get available actions", "type": "http" }, "http": { "method": "GET", "url": "https://api.lumos.com/tasks/:task_id/actions", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Get available actions" }, { "info": { "name": "Execute action on task", "type": "http" }, "http": { "method": "POST", "url": "https://api.lumos.com/tasks/:task_id/perform-action", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Execute action on task" }, { "info": { "name": "Reassign task", "type": "http" }, "http": { "method": "POST", "url": "https://api.lumos.com/tasks/:task_id/reassign", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Reassign task" }, { "info": { "name": "Add comment to task", "type": "http" }, "http": { "method": "POST", "url": "https://api.lumos.com/tasks/:task_id/comments", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add comment to task" }, { "info": { "name": "Complete task", "type": "http" }, "http": { "method": "POST", "url": "https://api.lumos.com/tasks/:task_id/complete", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Complete task" }, { "info": { "name": "Dismiss task", "type": "http" }, "http": { "method": "POST", "url": "https://api.lumos.com/tasks/:task_id/dismiss", "params": [ { "name": "task_id", "value": "", "type": "path" } ] }, "docs": "Dismiss task" } ] } ], "bundled": true }