action noosh_put_workgroup { label: "Update a specific Workgroup" description: "Update a specific Workgroup" provider: noosh method: PUT path: "/v1/workgroups/{workgroup_id}/detail" encoding: json input: { type: "object" properties: { address_line1: { type: "string" } address_line2: { type: "string" } address_line3: { type: "string" } city: { type: "string" } country: { type: "string" } custom_fields: { type: "array" items: { description: "Java type: com.noosh.domain.nooshapi.persist.vo.CustomFieldPersistVO" properties: { date_value: { type: "string" format: "date" } number_value: { description: "Java type: java.math.BigDecimal" type: "object" } param_name: { type: "string" } string_value: { type: "string" } } } } decimal_places: { type: "integer" format: "int64" } postal: { type: "string" } state: { type: "string" } workgroup_id: { type: "string" } workgroup_name: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupHTTPStatusVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } workgroup_id: { type: "integer" format: "int64" } workgroup_name: { type: "string" } } } }