action noosh_get_supplier_workgroup_list { label: "List supplier workgroups" description: "List supplier workgroups" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/supplierWorkgroups" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SupplierWorkgroupListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.SupplierWorkgroupSimpleVO" properties: { bu_supplier_workgroup_id: { type: "integer" format: "int64" } bu_supplier_workgroup_name: { type: "string" } client_workgroup_id: { type: "integer" format: "int64" } client_workgroup_name: { type: "string" } is_approved: { type: "boolean" } supplier_code: { type: "string" } supplier_workgroup_id: { type: "integer" format: "int64" } supplier_workgroup_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }