Get User Preferences

get

/essbase/rest/v1/preferences

Gets user preferences. This operation returns links to various preferences available in this release.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK

Preferences returned successfully.

Body ()
Root Schema : Preference
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve links to current user preferences for Essbase.

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

Example of Response Body

{
  "links" : [ {
    "rel" : "grid",
    "href" : "https://myserver.example.com:9001/essbase/rest/v1/preferences/grid",
    "method" : "GET"
  } ]
}
Back to Top