Method: PureCloud::AuthorizationApi#post_roles_default
- Defined in:
- lib/purecloud/api/authorization_api.rb
#post_roles_default(opts = {}) ⇒ OrganizationRoleEntityListing
Restores all default roles This endpoint serves several purposes. 1. It provides the org with default roles. This is important for default roles that will be added after go-live (they can retroactively add the new default-role). Note: When not using a query param of force=true, it only adds the default roles not configured for the org; it does not overwrite roles. 2. Using the query param force=true, you can restore all default roles. Note: This does not have an effect on custom roles.
330 331 332 333 |
# File 'lib/purecloud/api/authorization_api.rb', line 330 def post_roles_default(opts = {}) data, status_code, headers = post_roles_default_with_http_info(opts) return data end |