Delete Permission from Filter

delete

/essbase/rest/v1/applications/{applicationName}/databases/{databaseName}/filters/{filterName}/permissions/{userGroupId}

Removes permissions from a filter for the specified user or group.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

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.

Back to Top

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