action noosh_get_task_list_of_project { label: "Get task list of project level" description: "Get task list of project level" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/tasks" encoding: json input: { type: "object" properties: { project_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TaskListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TaskSimpleVO" 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" } 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" } } } }