Skip to main content

Overview

Groups simplify permission management by allowing you to assign collections and permissions to groups of users rather than individual users.
Groups are only available on Teams and Enterprise plans.

Get Group

Retrieve a specific group.
string
required
Organization ID
string
required
Group ID

Response

string
required
Group unique identifier
string
required
Parent organization ID
string
required
Group name
boolean
required
Whether group has access to all collections
string
External identifier for directory sync

Get Group with Details

Retrieve group including collection assignments.
string
required
Organization ID
string
required
Group ID

Response

Includes all group data plus:
array
Array of collection access assignments

List Groups

Retrieve all groups in an organization.
string
required
Organization ID

List Groups with Details

Retrieve all groups including collection assignments.
string
required
Organization ID

Get Group Users

Retrieve all user IDs in a group.
string
required
Organization ID
string
required
Group ID

Response

Returns an array of organization user IDs.

Create Group

Create a new group.

Request Body

string
required
Group name
boolean
default:"false"
Grant access to all collections
string
External identifier for directory sync
array
Collection access assignments (required if accessAll=false)
array
Array of organization user IDs to add to group

Collection Access Object

string
required
Collection ID
boolean
default:"false"
Read-only access
boolean
default:"false"
Hide password fields

Update Group

Update an existing group.
string
required
Organization ID
string
required
Group ID

Request Body

Same as Create Group - all fields must be provided.
You cannot add yourself to a group unless admin access to all collections is enabled.

Delete Group

Permanently delete a group.
string
required
Organization ID
string
required
Group ID
Deleting a group removes users from the group but does not delete the users themselves. Users lose access to collections granted via the group.

Bulk Delete Groups

Delete multiple groups at once.
string
required
Organization ID
array
required
Array of group IDs to delete

Group Management Best Practices

Organizing Groups

  1. By Department: Engineering, Marketing, Sales, Finance
  2. By Role: Admins, Managers, Contractors
  3. By Project: Project Alpha, Beta Testing, Production
  4. By Location: US Team, EU Team, APAC Team

Naming Conventions

Access Strategy

  1. Use groups instead of individual users for collection access
  2. Keep groups focused - one clear purpose per group
  3. Review membership regularly - audit who’s in each group
  4. Use accessAll sparingly - grant specific collection access when possible
  5. Leverage directory sync - automate group membership with LDAP/SCIM

Permission Inheritance

Users inherit collection access from all groups they belong to:
When a user is in multiple groups with different permissions to the same collection, they receive the highest level of access.

Directory Sync

Groups can be synchronized with external directory services:

LDAP/Active Directory

SCIM

Groups created via SCIM automatically include the external ID:
Do not manually modify groups that are managed by directory sync. Changes may be overwritten during the next sync.

Groups vs Direct User Assignment

Recommendation: Use groups for most use cases. Reserve direct user assignment for exceptional cases.