action noosh_get_client_workgroup_list { label: "List client workgroups" description: "List client workgroups" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/clientWorkgroups" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ClientWorkgroupListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ClientWorkgroupSimpleVO" properties: { client_ac_workgroup_id: { type: "integer" format: "int64" } client_workgroup_id: { type: "integer" format: "int64" } client_workgroup_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }