Get Full Provisioning Report

get

/groups/{groupId}/provisionReport

Gets a full provisioning report for the service and all applications. Service roles are included in the response only if the logged in user has Service Administrator role. The logged in user must have at least Database Manager role for applications to get application provisioning reports. Application roles are included in the report only if the logged in user has at least Application 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

Path Parameters
Query Parameters
  • Use all to get provisioning information for all applications.

Back to Top

Response

200 Response

OK

Provisioning report returned successfully.

404 Response

Not Found

The group with that ID does not exist.

500 Response

Internal Server Error.

Back to Top

Examples

The following example shows how to retrieve a particular group's service role and application level provisioning.

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/groups/dbupdaters/provisionReport -H "accept: application/json" -u %User%:%Password%

Example of Response Body

{
  "service" : {
    "roles" : {
      "items" : [ {
        "name" : "user"
      } ]
    }
  },
  "applications" : {
    "links" : [ {
      "rel" : "self",
      "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbupdaters/provisionReport/applications",
      "method" : "GET"
    } ]
  }
}
Back to Top