Info_Groups
Read and write groups data in your Smartsheet account.
Table-specific Information
SELECT
Retrieve all groups.SELECT * FROM Info_Groups
Retrieve details for a specific group.
SELECT * FROM Info_Groups WHERE Id = '2035256120371076'
INSERT
You can create a group by providing the Name column as shown in the following example query:INSERT INTO Info_Groups (Name, Description, MemberEmails) VALUES ('My Group', 'Testing Group 1.', '[email protected],[email protected]')
UPDATE
You can update group data by specifying the Id column in the criteria as shown in the following example query:UPDATE Info_Groups SET Name = 'Testing Group 1', Description = 'My Testing Group 1.', OwnerId = '8428447480473476' WHERE Id = '2035256120371076'
DELETE
You can delete a group by specifying the Id column in the criteria as shown in the following example query:DELETE FROM Info_Groups WHERE Id = '2035256120371076'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
A unique identifier for the group, used as the primary key. | |
| Name | String | False |
The descriptive name of the group, typically used for display and identification. | |
| Description | String | False |
A brief summary or details about the purpose or function of the group. | |
| Owner | String | True |
The email address of the user who owns or administers the group. | |
| OwnerId | String | False |
The unique identifier for the user who owns or manages the group. | |
| CreatedAt | Datetime | True |
The timestamp indicating when the group was initially created. | |
| ModifiedAt | Datetime | True |
The timestamp indicating the most recent update or change made to the group. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| MemberEmails | String |
A comma separated list of values containing the emails of the users to add in the group. This column is write-only and can be used only for INSERT statements. |