Get Server Properties

get

/essbase/rest/v1/properties

Returns the Provider Services configuration properties available at the Essbase Server level to help you manage network timeout parameters.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK

Properties returned successfully, with links to get or edit the properties.

Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : PropertyList
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : properties
Type: object
Additional Properties Allowed
Show Source
Nested Schema : PropertyEntry
Type: object
Show Source

400 Response

Bad Request

Failed to get properties.

500 Response

Internal Server Error.

Back to Top

Examples

The following example shows how to list the currently configured Provider Services properties for the Essbase Server. The Provider Services properties help you manage network timeout parameters.

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/properties?links=none" -H Accept:application/json -H Content-Type:application/json -u %User%:%Password%

Example of Response Body

{
  "items" : [ {
    "name" : "olap.server.netSocketTryInfinite",
    "value" : "false"
  }, {
    "name" : "olap.server.netRetryCount",
    "value" : "2950"
  } ]
}
Back to Top