action flat_get_group_details { label: "Get group information" provider: flat method: GET path: "/groups/{group}" encoding: json output: { type: "object" description: "The details of a group" properties: { creationDate: { type: "string" format: "date-time" description: "The date when the group was create" } id: { type: "string" description: "The unique identifier of the group" } name: { type: "string" description: "The displayable name of the group" } organization: { type: "string" description: "The unique identifier of the Organization owning the group" } readOnly: { type: "boolean" description: "`true` if the properties and members of this group are in in read-only\n" } type: { type: "string" description: "The type of the group" enum: ["generic", "classTeachers", "classStudents"] } usersCount: { type: "number" description: "The number of students in this group" } } } }