Delete User
delete
/essbase/rest/v1/users/{id}
Deletes a 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.
Request
Path Parameters
-
id(required): string
ID of user.
Response
Supported Media Types
- application/json
- application/xml
200 Response
OK
User deleted successfully.
400 Response
Bad Request
The logged in user may not have the appropriate service role.
500 Response
Internal Server Error.
Examples
The following example shows how to delete an Essbase user by ID.
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/users/User005" -H "accept: application/json" -u %User%:%Password%