action noosh_get_quote_list { label: "List the quotes" description: "List the quotes" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/quotes" encoding: json input: { type: "object" properties: { project_id: { type: "string" } "quote_state_id, use filters={\"quote_state_id\":111111}": { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.QuoteListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.QuoteSimpleVO" properties: { currency: { type: "string" } grand_total: { description: "Java type: java.math.BigDecimal" type: "object" } quote_id: { type: "integer" format: "int64" } quote_title: { type: "string" } rfq: { description: "Java type: com.noosh.nooshapi.vo.RfqBaseVO" properties: { received_date: { type: "string" format: "date" } rfq_id: { type: "integer" format: "int64" } rfq_title: { type: "string" } status: { type: "string" } } } status: { type: "string" } submit_date: { type: "string" format: "date" } transactional_currency: { type: "string" } transactional_grand_total: { type: "object" additionalProperties: true } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }