action noosh_get_rfe { label: "Get a specific Rfe" description: "Get a specific Rfe" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/rfes/{rfe_id}" encoding: json input: { type: "object" properties: { project_id: { type: "string" } rfe_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "rfe_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.RfeExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.RfeDetailsVO" properties: { description: { type: "string" } details: { type: "string" } estimate_due_date: { type: "string" format: "date" } estimators: { type: "array" items: { type: "string" } } itemized_tax_and_shipping: { type: "integer" format: "int32" } proposed_order_completion_date: { type: "string" format: "date" } reference_number: { type: "string" } requestor: { type: "string" } rfe_id: { type: "integer" format: "int64" } rfe_items: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfeItemSimpleEXTVO" properties: { job_id: { type: "integer" format: "int64" } rfe_item_id: { type: "integer" format: "int64" } rfe_item_options: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfeItemOptionVO" properties: { item_option_id: { type: "integer" format: "int64" } quantity: { description: "Java type: java.math.BigDecimal" type: "object" } quantity_index: { type: "integer" format: "int32" } } } } spec_id: { type: "integer" format: "int64" } spec_name: { type: "string" } } } } status: { type: "string" } submitted_date: { type: "string" format: "date" } 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" } } } } title: { type: "string" } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }