Groups
The Groups page is used to bring users together with team/group logic and perform collective management.
Access Path
- Web:
/groups
Major Transactions
- Group list and detail viewing
- Creating a group
- Group update (
PUTorPATCH) - Delete a group
- Adding and removing members from the group
API Terminals
GET /api/groupsGET /api/groups/:idPOST /api/groupsPUT /api/groups/:idPATCH /api/groups/:idDELETE /api/groups/:idPOST /api/groups/:id/membersDELETE /api/groups/:id/members/:userId
Authorization Note
- All routes require
authenticate + requireRole. - Group operations are protected with
user:*permissions: user:read,user:create,user:update,user:delete- List/detail endpoints support translation with
Accept-Languageand?translations=parameters.
:::info Manifest Code
core:group:view
:::