AccountUserGroups
Gets user groups in your account.
Table Specific Information
SELECT
The Cvent API allows you to filter by certain fields when querying for data. The following fields can be filtered by the API:
- Id supports =
- Name supports =,!=,LIKE,IN
- CreatedBy supports =,!=,LIKE,IN
- LastModifiedBy supports =,!=,LIKE,IN
- Created supports =,!=,>,<,>=,<=
- LastModified supports =,!=,>,<,>=,<=
All other filters are handled client-side.
The following is an example of a SELECT statement:
SELECT * FROM AccountUserGroups WHERE Name = 'abc'
INSERT
The following is an example of an INSERT statement:INSERT INTO AccountUserGroups (Name, Description) VALUES ('MyGroup', 'New')
UPDATE
The following is an example of an UPDATE statement:UPDATE AccountUserGroups SET Name = 'UpdatedGroup', Description = 'Changed' WHERE ID = '462af84e-be35-4082-ac38-3cda475dd1de'
DELETE
The following is an example of an DELETE statement:DELETE FROM AccountUserGroups WHERE ID = '462af84e-be35-4082-ac38-3cda475dd1de'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
The unique identifier of the user group. | |
| Name | String | False |
The name of the user group. | |
| Description | String | False |
The description of the user group. | |
| Created | Datetime | True |
The date time when this record was created. | |
| CreatedBy | String | True |
The identifier of the user that created this record. | |
| LastModified | Datetime | True |
The date time when this record was last updated. | |
| LastModifiedBy | String | True |
The identifier of the user that last updated this record. |