People and groups
Create group
CreateGroup adds a Group. Admins only.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/api/v1/groups" \ -H "Content-Type: application/json" \ -d '{}'{ "group": { "uid": "string", "name": "string", "members": [ { "uid": "string", "name": "string", "email": "string", "role": "ROLE_UNSPECIFIED", "mustChangePassword": true, "createdAt": "string", "lastSignedInAt": "string" } ], "listNames": [ "string" ] }}Add member
AddMember creates an account with a temporary password, which is read out once. Nooks has no mail server, so an Admin hands the password over in person or however else they already talk. The Member must replace it before anything else.
List groups
ListGroups returns every Group, with who is in it.