action noosh_get_wg_task_status_list_of_workgroup { label: "Get custom task status of workgroup level" description: "Get custom task status of workgroup level" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/customTaskStatus" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.WgTaskStatusListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.WgTaskStatusVO" properties: { description: { type: "string" } is_active: { type: "boolean" } is_default: { type: "boolean" } task_status_name: { type: "string" } tasks_status_id: { type: "integer" format: "int64" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }