Skip to main content

POST /Info/Measures/:cube

Returns information about the measures available to the given cube.

URL Parameters

cube Required. Logical name of the cube. This name can include slashes; see Use of Slashes in Cube and KPI Names.

Request Body Details

This service uses the following property of the request body:

SKIPCALCULATED Optional.

Example Request

Example Response

{
            "Info": {
                "Error":"",
                "BaseCube":"DemoMDX",
                "SkipCalculated":0
            },
            "Result": {
                "Measures": [
                    {"name":"%COUNT","caption":"%COUNT","type":"integer","hidden":0,"factName":""},
                    {"name":"Age","caption":"Age","type":"integer","hidden":0,"factName":"MxAge"}
                ...]
            }
        }

In the response object, the Result property contains a property called Measures, which contains an array of objects, one for each measure.

For information that applies to all response objects, see Notes on the Response Objects.

FeedbackOpens in a new tab