action noosh_get_project_status { label: "List the project status" description: "List the project status" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projectStatus" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ProjectStatusListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ProjectStatusSimpleVO" properties: { project_status_id: { type: "integer" format: "int64" } project_status_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }