Get Application Provisioning Report

get

/essbase/rest/v1/applications/{applicationName}/provisionReport

Gets provisioning report of specified application for all the users and groups having at least one application role (directly or inherited through groups). To invoke this API, logged in user should have at least Database Manager role for the specified application. Application roles are included only when logged in user has Application Manager role for the specified 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

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Provisioning report returned successfully, as Excel stream.

400 Response

Bad Request

Logged in user may not have appropriate application role.

500 Response

Internal Server Error.

Back to Top

Examples

The following example shows how to download an Excel file containing the user and group provisioning report for the Sample 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/applications/Sample/provisionReport" -H "accept: application/octet-stream" -o ProvisionReport_Sample.xlsx -u %User%:%Password%
Back to Top