action noosh_get_workgroup_member_list { label: "List the workgroup members" description: "List the workgroup members" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/workgroupMembers" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupMembersListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.WorkgroupMembersSimpleVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } user_id: { type: "integer" format: "int64" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }