Get Text Lists
get
/outline/{app}/{cube}/settings/smartlist
Returns all text lists associated with the database outline.
Request
Path Parameters
-
app(required):
Application name.
-
cube(required):
Database name.
Query Parameters
-
applicationNameForConnection(required):
Application name for connection.
-
connection(required):
Essbase connection name.
Header Parameters
Back to Top
Response
200 Response
OK
Text lists returned.
Examples
The following example shows how to get the text lists (smart lists) associated with an Essbase cube outline.
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/outline/Facility/Rating/settings/smartlist?links=none" -H Accept:application/json -H Content-Type:application/json -o output.json -u %User%:%Password%Example of Response Body
The following information is written to output.json:
{
"ResponseValues": {
"#Missing": "Blank",
"#OutOfRange": "N/A",
"1": "Perfect",
"2": "Very Nice",
"3": "Nice",
"4": "Good some of the times",
"5": "No Opinion",
"6": "Mangeable",
"7": "Needs Improvement",
"8": "Bad",
"9": "Very Bad",
"10": "Not Usable"
}
}