action noosh_get_shipment_list { label: "List shipments of project" description: "List shipments of project" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/shipments" 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.ShipmentListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ShipmentSimpleVO" properties: { locations_count: { type: "integer" format: "int64" } qty_received: { type: "integer" format: "int64" } qty_requested: { type: "integer" format: "int64" } qty_shipped: { type: "integer" format: "int64" } received_date: { type: "string" format: "date" } shipment_id: { type: "integer" format: "int64" } shipment_status: { type: "string" } shipped_date: { type: "string" format: "date" } spec: { description: "Java type: com.noosh.nooshapi.vo.SpecBaseVO" properties: { job_id: { type: "integer" format: "int64" } reference_number: { type: "string" } spec_id: { type: "integer" format: "int64" } spec_name: { type: "string" } } } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }