Newer Version Available
PermissionSetGroup (Pilot)
Represents a group of permission sets and the permissions within them.
Use permission set groups to organize permissions based on job functions or tasks and then
package them. This object is available in API version 45.0 and later.
Supported Calls
create(), delete(), describeSObject(), query(), retrieve(), update(), upsert()
Fields
| Field Name | Details |
|---|---|
| Description |
|
| DeveloperName |
|
| Language |
|
| MasterLabel |
|
| NameSpacePrefix |
|
| Status |
|
Usage
Use the PermissionSetGroup (Pilot) object to query existing permission set groups and to find which aggregated permissions are included in the group.
For example, to search for all object permissions in a permission set group named StandardAccountingUsers:
1SELECT SObjectType
2FROM ObjectPermissions
3WHERE Parent.PermissionSetGroup.DeveloperName = 'StandardAccountingUsers'1POST
2/services/data/v45.0/tooling/sobjects/PermissionSetGroup/
3
4{
5 "DeveloperName":"Sales", "MasterLabel": "sales_label"
6}