Contents
Changelog
UPDATE
Effective from:
August 9, 2022
Improvements to PermissionSets API and Users API
Announced: August 9, 2022
Effective from:
August 9, 2022
August 9, 2022
We have made a few updates to the PermissionSets API to support global user management and app-specific permission sets:
- A new optional query parameter
apphas been added to theGET /permissionSetsendpoint: app- for filtering permission sets by type (deals,projects,campaigns,global, andaccount_settings)- The 3 following response fields have been added to the
GET /permissionSetsandGET /permissionSets/{id}endpoints: app- describes the type of the permission setdescription- contains the description for the permission settype- contains the type of the permission set (admin,manager,regular, orcustom)
And the following updates to the Users API:
- A new optional body parameter
accesshas been added to thePOST /usersendpoint to assign access rights for the user. - A new response field
accesshas been added to six endpoints, including:
The access response field contains information about the user’s admin status, the permission sets assigned to the user, and the permission set IDs.
“access”: [
{
"app": "sales",
"admin": false,
"permission_set_id": "f07d229d-088a-4144-a40f-1fe64295d180"
},
{
"app": "global",
"admin": true,
"permission_set_id": "233b7976-39bd-43a9-b305-ef3a2b0998e5"
}
]