action noosh_get_task_list_of_workgroup { label: "Get task list of workgroup level" description: "Get task list of workgroup level" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/tasks" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TaskWorkgroupLevelListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TaskWorkgroupLevelSimpleVO" properties: { actual_end: { type: "string" format: "date" } actual_hours: { description: "Java type: java.math.BigDecimal" type: "object" } actual_start: { type: "string" format: "date" } assign_to: { description: "Java type: com.noosh.nooshapi.vo.PersonVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } middle_name: { type: "string" } } } baseline_duration: { type: "object" additionalProperties: true } baseline_end_date: { type: "string" format: "date" } baseline_start_date: { type: "string" format: "date" } current_duration: { type: "object" additionalProperties: true } is_milestone: { type: "boolean" } mod_date: { type: "string" format: "date" } plan_end: { type: "string" format: "date" } plan_start: { type: "string" format: "date" } priority: { type: "string" } project: { description: "Java type: com.noosh.nooshapi.vo.ProjectBaseVO" properties: { project_id: { type: "integer" format: "int64" } project_name: { type: "string" } project_number: { type: "string" } } } schedule_code: { type: "string" } status: { type: "string" } task_id: { type: "integer" format: "int64" } task_name: { type: "string" } task_type: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }