ProjectGroups
Gets all the groups for the specified project.
Select
You can use the below query to get all ProjectGroups:SELECT * FROM ProjectGroups
Insert
To create a new ProjectGroup you can use the below query:
INSERT INTO ProjectGroups (name) VALUES ('New Project Group')
Delete
ProjectGroups can be deleted by providing the Id and issuing a DELETE statement.
DELETE FROM ProjectGroups WHERE Id = '123456000000045018'
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | String | False |
Project Group Id. |
Name | String | False |
Project Group Name. |
Default | Boolean | False |
Is Default Project Group. |