action avaza_task_lookup { label: "Gets minimal list of Tasks for the current user" description: "Groups Tasks by Section. Default sort is by Section Title followed by Task Title" provider: avaza method: GET path: "/api/Task/Lookup" encoding: json input: { type: "object" properties: { hideCompleted: { type: "string" } pageNumber: { type: "string" } pageSize: { type: "string" } projectID: { type: "string" } search: { type: "string" } } required: ["projectID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }