Skip to main content

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 (PUT or PATCH)
  • Delete a group
  • Adding and removing members from the group

API Terminals

  • GET /api/groups
  • GET /api/groups/:id
  • POST /api/groups
  • PUT /api/groups/:id
  • PATCH /api/groups/:id
  • DELETE /api/groups/:id
  • POST /api/groups/:id/members
  • DELETE /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-Language and ?translations= parameters.

:::info Manifest Code core:group:view

:::