ManagementPermissionGroups
Returns management permission groups, which define which agents can create, update, archive, and publish articles. Each group consists of a set of privileges mapped to user segments, and agents receive the privileges associated with their user segments.
Table-Specific Information
Select
The following queey is processed server-side while other filters are processed client-side within the provider.SELECT * FROM ManagementPermissionGroups WHERE Id = '19162149101585'
Insert
The Name column is required to insert. All fields that are not readonly are optional for insert. This operation is allowed for logged-in users with the "Help Center manager" role.
INSERT INTO ManagementPermissionGroups (Name, Edit) VALUES ('Test', '19162093613969, 19236810082193')
Update
You must specify the Id of the management permission group to update it. All fields that are not readonly are optional for insert. This operation is allowed for logged-in users with the "Help Center manager" role.
UPDATE ManagementPermissionGroups SET Name = 'UpdatedName' WHERE Id = '19239392699537'
Delete
You must specify the Id of the management permission group to delete it. This operation is allowed for logged-in users with the "Help Center manager" role.
DELETE FROM ManagementPermissionGroups WHERE Id = '19239392699537'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
The unique Id automatically assigned to the permission group when created. | |
| BuiltIn | Boolean | True |
Indicates whether the permission group is built-in. Built-in permission groups cannot be modified. | |
| Name | String | False |
The name of the permission group. | |
| Edit | String | False |
The Ids of user segments that have edit privileges. For insertion and updating, provide these values separated by a comma. | |
| Publish | String | False |
The Ids of user segments that have publish privileges. For insertion and updating, provide these values separated by a comma. | |
| CreatedAt | Datetime | True |
The date and time when the permission group was created. | |
| UpdatedAt | Datetime | True |
The date and time when the permission group was last updated. |