GroupMembers
Retrieves a list of members belonging to a specific Airtable user group, including their unique identifiers and associated group information.
View-Specific Information
Note: This view is only available to users with an Airtable Enterprise plan.
SELECT Examples
-- Retrieve all group members
SELECT * FROM [Information].[GroupMembers];
-- Retrieve member IDs by group
SELECT GroupId, Id FROM [Information].[GroupMembers];
Columns
| Name | Type | Description |
| GroupId [KEY] | String | The unique identifier for the Airtable user group whose members are being retrieved. |
| Id [KEY] | String | The unique identifier of a member belonging to the specified user group. |