action noosh_get_supplier_workgroup_detail { label: "Get the specific supplier of My Group" description: "Get the specific supplier of My Group" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/supplierWorkgroups/{bu_supplier_workgroup_id}" encoding: json input: { type: "object" properties: { bu_supplier_workgroup_id: { type: "string" } workgroup_id: { type: "string" } } required: ["bu_supplier_workgroup_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SupplierWorkgroupExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.SupplierWorkgroupDetailVO" properties: { additional_workgroups_contain_same_supplier: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.SupplierWorkgroupBasicVO" properties: { bu_supplier_workgroup_id: { type: "integer" format: "int64" } bu_supplier_workgroup_name: { type: "string" } } } } 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" } } } }