action noosh_get_project_list { label: "List the projects" description: "List the projects" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ProjectListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ProjectSimpleVO" properties: { client_account: { type: "string" } client_workgroup_id: { type: "integer" format: "int64" } completion_date: { type: "string" format: "date" } is_active: { type: "boolean" } is_hot: { type: "boolean" } last_spec_update: { type: "string" format: "date" } project_id: { type: "integer" format: "int64" } project_name: { type: "string" } project_number: { type: "string" } project_status: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }