action noosh_get_workgroup_detail { label: "Detail workgroup info" description: "Detail workgroup info" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/detail" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupDetailVO" properties: { address_line1: { type: "string" } address_line2: { type: "string" } address_line3: { type: "string" } city: { type: "string" } country: { type: "string" } country_code: { type: "string" } custom_fields: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.PropertyPaAndAttVO" properties: { date_value: { type: "string" format: "date" } number_value: { description: "Java type: java.math.BigDecimal" type: "object" } param_id: { type: "integer" format: "int64" } param_name: { type: "string" } property_attribute_id: { type: "integer" format: "int64" } string_value: { type: "string" } } } } default_currency: { type: "string" } portal: { type: "string" } postal: { type: "string" } state: { type: "string" } workgroup_id: { type: "integer" format: "int64" } workgroup_name: { type: "string" } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }