Groups
Retrieves a list of user groups within an Airtable workspace, including their unique identifiers and display names.
View-Specific Information
Note: This view is only available to users with an Airtable Enterprise plan.
SELECT Examples
-- Retrieve all groups
SELECT * FROM [Information].[Groups];
-- Retrieve group IDs and names
SELECT Id, DisplayName FROM [Information].[Groups];
Columns
| Name | Type | Description |
| Id [KEY] | String | The unique identifier for the Airtable user group. |
| DisplayName | String | The display name of the group as defined within the Airtable workspace. |