{ "opencollection": "1.0.0", "info": { "name": "Orkes Conductor REST Authentication Human Tasks API", "version": "2.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Human Tasks", "type": "folder" }, "items": [ { "info": { "name": "Search human tasks", "type": "http" }, "http": { "method": "GET", "url": "{baseUrl}/api/human/tasks/search", "params": [ { "name": "start", "value": "", "type": "query" }, { "name": "size", "value": "", "type": "query" }, { "name": "query", "value": "", "type": "query" } ] }, "docs": "Search for human tasks across workflows." }, { "info": { "name": "Get a human task", "type": "http" }, "http": { "method": "GET", "url": "{baseUrl}/api/human/tasks/:taskId", "params": [ { "name": "taskId", "value": "", "type": "path" } ] }, "docs": "Returns details of a specific human task." }, { "info": { "name": "Claim a human task", "type": "http" }, "http": { "method": "POST", "url": "{baseUrl}/api/human/tasks/:taskId/claim/:userId", "params": [ { "name": "taskId", "value": "", "type": "path" }, { "name": "userId", "value": "", "type": "path" } ] }, "docs": "Claims a human task for a specific user." }, { "info": { "name": "Release a human task", "type": "http" }, "http": { "method": "POST", "url": "{baseUrl}/api/human/tasks/:taskId/release", "params": [ { "name": "taskId", "value": "", "type": "path" } ] }, "docs": "Releases a claimed human task." }, { "info": { "name": "Complete a human task", "type": "http" }, "http": { "method": "POST", "url": "{baseUrl}/api/human/tasks/:taskId/complete", "params": [ { "name": "taskId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Completes a human task with output." } ] } ], "bundled": true }