Get All Applications Provisioning Report

get

/groups/{groupId}/provisionReport/applications

Gets a provisioning report for all applications. The logged in user must have at least Database Manager role for the application. 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 for applications 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 get links to reports on a particular group's access to all applications on the Essbase Server.

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

The script requests provisioning information for the group id dbaccessgroup.

call properties.bat
curl -X GET https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications -H "accept: application/json" -u %User%:%Password%

Example of Response Body

{
  "links" : [ {
    "rel" : "Sample",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample",
    "method" : "GET"
  }, {
    "rel" : "ASOSamp",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/ASOSamp",
    "method" : "GET"
  }, {
    "rel" : "Efficient",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Efficient",
    "method" : "GET"
  }, {
    "rel" : "Sample_Dynamic",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample_Dynamic",
    "method" : "GET"
  }, {
    "rel" : "Sample_Currency",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/groups/dbaccessgroup/provisionReport/applications/Sample_Currency",
    "method" : "GET"
  } ]
}
Back to Top