action noosh_get_estimate_list { label: "List the Estimates" description: "List the Estimates" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/estimates" 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.EstimateListExpandVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.EstimateBaseVO" properties: { create_date: { type: "string" format: "date" } currency: { type: "string" } estimate_id: { type: "integer" format: "int64" } estimate_title: { type: "string" } expiration_date: { type: "string" format: "date" } project: { description: "Java type: com.noosh.nooshapi.vo.ProjectBaseVO" properties: { project_id: { type: "integer" format: "int64" } project_name: { type: "string" } project_number: { type: "string" } } } rfe: { description: "Java type: com.noosh.nooshapi.vo.RfeBaseVO" properties: { rfe_due_date: { type: "string" format: "date" } rfe_id: { type: "integer" format: "int64" } rfe_title: { type: "string" } status: { type: "string" } } } status: { type: "string" } submit_date: { type: "string" format: "date" } supplier_workgroup: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupBaseVO" properties: { workgroup_id: { type: "integer" format: "int64" } workgroup_name: { type: "string" } } } transactional_currency: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }