Delete Group
delete
/essbase/rest/v1/groups/{id}
Deletes a group.
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 group.
Response
Supported Media Types
- application/json
- application/xml
204 Response
No Content
Group deleted successfully.
400 Response
Bad Request
Logged in user may not have appropriate permissions.
500 Response
Internal Server Error.
Examples
The following example shows how to delete an Essbase group 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 -i https://myserver.example.com:9001/essbase/rest/v1/groups/ess_power_group -H "Accept:application/json" -u %User%:%Password%