List Calculation-specific Conversations IDs

get

/ai/applications/{applicationName}/databases/{databaseName}/calculation/conversation

Lists all calculation specific conversation IDs.

Request

Path Parameters
Back to Top

Response

200 Response

OK

Conversation IDs retrieved successfully.

400 Response

Bad Request

Failed to retrieve Conversations IDs.

Back to Top

Examples

The following example shows how to fetch all the calculation specific conversations for a particular user.

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' \
'http://myserver.example.com:9000/essbase/rest/v1/ai/applications/SampleAI/databases/Basic/calculation/conversation' \
-H 'accept: */*' \
-u %User%:%Password%

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "57971B41-CA50-F7DC-E063-4F424664F391": "Assign 1000 to Budget for Christmas month.",
  "5743A7C1-FF0B-A9A6-E063-4F424664BC72": "Generate calculation script to aggregate Product and Market
    dimensions"
}
Back to Top