Get User's Filters Provisioning Report
/essbase/rest/v1/users/{userId}/provisionReport/applications/{application}/filters
Gets a filters provisioning report for a specific user and application. The logged in user must have at least Database Manager role for the application.
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
-
application(required): string
Application name.
-
userId(required): string
User ID.
Response
- application/json
- application/xml
200 Response
OK
Provisioning report returned successfully.
object
-
inheritedFromGroups:
array inheritedFromGroups
Unique Items Required:
true
-
name:
string
400 Response
Bad Request
The logged in user may not have the appropriate application role.
404 Response
Not Found
User not found.
500 Response
Internal Server Error.
Examples
The following example shows how to get a report of filters provisioned for a specific Essbase user on a specific application.
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 GET https://myserver.example.com:9001/essbase/rest/v1/users/user002/provisionReport/applications/Sample/filters -H "Accept:application/json" -u %User%:%Password%
Example of Response Body
{
"items" : [ {
"database" : "Basic",
"items" : [ {
"name" : "filter2"
} ]
} ]
}