Groups
Returns information about user groups configured in Confluence, such as group names, descriptions, and membership details.
Table Specific Information
Select
The add-in will use the Confluence API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the add-in.
- Name supports the '=,IN' comparisons.
- Id supports the '=' comparisons.
For example, the following queries are processed server side:
SELECT * FROM Groups WHERE Name = 'test'
SELECT * FROM Groups WHERE Name IN ('test1', 'test2')
SELECT * FROM Groups WHERE Id = 'ef75d879-6b69-4260-942a-ff5231e08be0'
Columns
| Name | Type | References | SupportedOperators | Description |
| Id [KEY] | String | = | The unique identifier of the group within Confluence. Used to reference the group in membership and permission tables. | |
| Name [KEY] | String | = | The display name of the group as defined in Confluence, used for managing user membership and access control. | |
| Type | String | Specifies the type of group, such as internal (managed within Confluence) or external (synchronized from an identity provider). |