Deprovision Service Role

delete

/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

Path Parameters
Query Parameters
  • 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
Back to Top

Response

Supported Media Types

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.

Back to Top

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%
Back to Top