Delete Permission from Filter
/essbase/rest/v1/applications/{applicationName}/databases/{databaseName}/filters/{filterName}/permissions/{userGroupId}
Removes permissions from a filter for the specified user or group.
Request
-
applicationName(required): string
Application name.
-
databaseName(required): string
Database name.
-
filterName(required): string
Filter name.
-
userGroupId(required): string
User or group ID.
-
group(required): boolean
True if the userGroupId refers to a group; false if it refers to a user.
Default Value:false
Response
- application/json
- application/xml
204 Response
No Content
The permission was removed successfully.
400 Response
Bad Request
Failed to remove permission from the filter. An input parameter may have been specified incorrectly.
500 Response
Internal Server Error.
Examples
The following example shows how to remove permission of an Essbase user or group from a security filter.
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/applications/Efficient/databases/UserFilters/filters/dslookupfilter/permissions/FilterGroup?group=true" -H "Accept: application/json" -u %User%:%Password%