Deprovision Service Role
/essbase/rest/v1/permissions/{id}
Deprovisions a single user from an Essbase service role. Service roles include Service Administrator, Power User, and User.
If you are using EPM Shared Services security mode, this operation is not available. Instead, manage users, groups, and permissions in the Shared Services Console.
To deprovision a group, you can use Delete Group
See Also: Deprovision User or Group from Application.
Request
-
id(required): string
User ID.
-
group: boolean
If true, ID is for a group. If false, ID is for a user. Default is false (ID is considered to be for a user.)
Default Value:false
Response
- application/json
- application/xml
200 Response
OK
User or group deprovisioned successfully.
400 Response
Bad Request
The logged in user may not have the required service administrator role.
500 Response
Internal Server Error.
Examples
The following example shows how to deprovision an Essbase user from a service role.
This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat
.
Script with cURL Command
call properties.bat
curl -X DELETE https://myserver.example.com:9001/essbase/rest/v1/permissions/user3 -H "Accept:application/json" -u %User%:%Password%