action learnifier_get_orgunits_orgid_usergroups_groupid_members { label: "List of all users in group." description: "Returns a list of all members in User Groups that are based on the Global Group with this groupid.\n" provider: learnifier method: GET path: "/orgunits/{orgid}/usergroups/{groupid}/members" encoding: json input: { type: "object" properties: { groupid: { type: "string" } orgid: { type: "string" } } required: ["groupid", "orgid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }