action noosh_get_rfq_list { label: "List the rfqs" description: "List the rfqs" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/rfqs" 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.RfqListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RfqSimpleVO" properties: { 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" } rfq_id: { type: "integer" format: "int64" } rfq_title: { type: "string" } status: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }