{ "opencollection": "1.0.0", "info": { "name": "Height APP Activities Tasks API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "Search tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.height.app/tasks", "params": [ { "name": "filters", "value": "{\"status\":{\"values\":[\"backLog\",\"inProgress\"]},\"assigneeId\":{\"values\":[\"123e4567-e89b-12d3-a456-426655440000\"]},\"completed\":{\"values\":[false]},\"lastActivityAt\":{\"values\":[],\"gt\":{\"date\":\"2019-11-07T17:00:00.000Z\"}}}", "type": "query", "description": "JSON object with filters" } ] }, "docs": "Search tasks" }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.height.app/tasks", "params": [ { "name": "realtime", "value": "", "type": "query", "description": "(defaults to true) - use false when migrating tasks" }, { "name": "notifyUsers", "value": "", "type": "query", "description": "(defaults to true) - use false when migrating tasks" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a task" }, { "info": { "name": "Patch multiples tasks", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.height.app/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Patch multiples tasks" }, { "info": { "name": "Get a task", "type": "http" }, "http": { "method": "GET", "url": "https://api.height.app/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "task index (number) or task id (UUID)" }, { "name": "include", "value": "", "type": "query", "description": "What you wish to include with the task." } ] }, "docs": "Get a task" }, { "info": { "name": "Update a single task", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.height.app/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "task index (number) or task id (UUID)" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a single task" }, { "info": { "name": "Move tasks", "type": "http" }, "http": { "method": "PUT", "url": "https://api.height.app/tasks/move", "body": { "type": "json", "data": "{}" } }, "docs": "Not working. https://www.notion.so/Move-tasks-0e612add3e09400bacc6119c8129fa67" } ] } ], "bundled": true }