/Info/Cubes
Request Method
GET or POST
URL Parameters
None.
Request Body Details
This endpoint uses the following properties of the request body:
Optional. This property can be cubes or subjectareas. If this property is cubes, the server sends information only about cubes. If this property is subjectareas, the server sends information only about subject areas. If this property is not specified, the server sends information about both cubes and subject areas.
Optional. If specified, this property should equal the logical name of a cube. In this case, the server sends information only about cubes and subject areas based on this cube.
Example Request
-
Request Method:
POST
-
Request URL:
https://localhost/api/deepsee/v3/Info/Cubes
For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.
-
Request Body:
{"BASECUBE":"patients"}
Example Response
{
"Info": {
"Error":"",
"Type":"all",
"BaseCube":"patients"
},
"Result": {
"Cubes":[
{"name":"AsthmaPatients","displayName":"AsthmaPatients","modTime":"2016-11-14 20:49:14","type":"subjectArea"},
{"name":"DemoMDX","displayName":"DemoMDX","modTime":"2016-11-14 20:49:14","type":"subjectArea"},
{"name":"YoungPatients","displayName":"YoungPatients","modTime":"2016-11-14 20:49:14","type":"subjectArea"}
]
}
}
In the response object, the Result property contains a property called Cubes, which contains an array of objects, one for each cube or subject area. In these objects, the type property indicates whether the item is a cube or a subject area.
For information that applies to all response objects, see Notes on the Response Objects.