action noosh_get_task_types_of_workgroup { label: "Get task types of workgroup level" description: "Get task types of workgroup level" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/taskTypes" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TaskTypeListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TaskTypeSimpleVO" properties: { task_type: { type: "string" } task_type_id: { type: "integer" format: "int64" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }