action noosh_get_rfq { label: "Get a specific Rfq" description: "Get a specific Rfq" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/rfqs/{rfq_id}" encoding: json input: { type: "object" properties: { project_id: { type: "string" } rfq_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "rfq_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.RfqExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.RfqDetailsVO" properties: { comments: { type: "string" } description: { type: "string" } proposed_completion_date: { type: "string" format: "date" } quote_due_date: { type: "string" format: "date" } quotes: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.QuoteBaseVO" properties: { currency: { type: "string" } grand_total: { description: "Java type: java.math.BigDecimal" type: "object" } quote_id: { type: "integer" format: "int64" } quote_title: { type: "string" } status: { type: "string" } submit_date: { type: "string" format: "date" } transactional_currency: { type: "string" } transactional_grand_total: { type: "object" additionalProperties: true } } } } received_date: { type: "string" format: "date" } recipient_name: { type: "string" } requestor_name: { type: "string" } rfq_id: { type: "integer" format: "int64" } rfq_items: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfqItemBaseVO" properties: { job_id: { type: "integer" format: "int64" } rfq_item_id: { type: "integer" format: "int64" } spec: { description: "Java type: com.noosh.nooshapi.vo.ergo.ErgoSpecSimpleVO" properties: { is_active: { type: "integer" format: "int32" } is_template: { type: "integer" format: "int32" } quantity_1: { type: "number" format: "double" } quantity_2: { type: "number" format: "double" } quantity_3: { type: "number" format: "double" } quantity_4: { type: "number" format: "double" } quantity_5: { type: "number" format: "double" } reference_number: { type: "string" } spec_id: { type: "integer" format: "int64" } spec_name: { type: "string" } } } } } } rfq_title: { type: "string" } status: { type: "string" } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }