action noosh_put_buy_order { label: "Update a specific buy order" description: "Update a specific buy order" provider: noosh method: PUT path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders/{order_id}" encoding: json input: { type: "object" properties: { order_id: { type: "string" } project_id: { type: "string" } workgroup_id: { type: "string" } } required: ["order_id", "project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.OrderVO" properties: { order_id: { type: "integer" format: "int64" } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }