action noosh_get_rfe_list { label: "List the RFES" description: "List the RFES" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/rfes" 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.RfeListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfeSimpleVO" properties: { estimate_due_date: { type: "string" format: "date" } rfe_id: { type: "integer" format: "int64" } rfe_items: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfeItemSimpleVO" properties: { rfe_item_id: { type: "integer" format: "int64" } } } } rfe_title: { type: "string" } supplier_estimates: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfeSuEstimateSimpleVO" properties: { supplier_estimates: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.EstimateSimpleVO" properties: { estimate_id: { type: "integer" format: "int64" } estimate_title: { type: "string" } } } } workgroup_id: { type: "integer" format: "int64" } workgroup_name: { type: "string" } } } } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }