action noosh_get_buy_order_list { label: "List the buy orders" description: "List the buy orders" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders" 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.OrderListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.OrderSimpleVO" properties: { buyer_workgroup: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupBaseVO" properties: { workgroup_id: { type: "integer" format: "int64" } workgroup_name: { type: "string" } } } change_orders: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.OrderSimpleBaseVO" properties: { buyer_workgroup: { type: "object" additionalProperties: true } comments: { type: "string" } completion_date: { type: "string" format: "date" } currency: { type: "string" } grand_total: { description: "Java type: java.math.BigDecimal" type: "object" } last_changed: { type: "string" format: "date" } last_status_change: { type: "string" format: "date" } order_id: { type: "integer" format: "int64" } order_number: { type: "string" } order_title: { type: "string" } payment_reference: { type: "string" } print_order_ids: { type: "array" items: { type: "integer" format: "int64" } } status: { type: "string" } status_comments: { type: "string" } supplier_reference: { type: "string" } supplier_workgroup: { type: "object" additionalProperties: true } transactional_currency: { type: "string" } transactional_grand_total: { type: "object" additionalProperties: true } } } } closing_change_orders: { type: "array" items: { type: "object" additionalProperties: true } } comments: { type: "string" } completion_date: { type: "string" format: "date" } currency: { type: "string" } grand_total: { type: "object" additionalProperties: true } grand_total_with_changes: { type: "object" additionalProperties: true } last_changed: { type: "string" format: "date" } last_status_change: { type: "string" format: "date" } order_id: { type: "integer" format: "int64" } order_number: { type: "string" } order_title: { type: "string" } payment_reference: { type: "string" } print_order_ids: { type: "array" items: { type: "integer" format: "int64" } } status: { type: "string" } status_comments: { type: "string" } supplier_reference: { type: "string" } supplier_workgroup: { type: "object" additionalProperties: true } transactional_currency: { type: "string" } transactional_grand_total: { type: "object" additionalProperties: true } transactional_grand_total_with_changes: { type: "object" additionalProperties: true } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }