/Info/Measures/:cube
Returns information about the measures available to the given cube.
Request Method
GET or POST
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 endpoint uses the following property of the request body:
SKIPCALCULATED
Optional.
Example Request
-
Request Method:
POST
-
Request URL:
https://localhost/api/deepsee/v3/Info/Measures/:demomdx
For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.
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.