POST /Command/GetCubeSize
Given the name of a cube, returns the number of rows in its fact table.
URL Parameters
None. Note that a request body is required; see the next heading.
Request Body Details
This service uses the following property of the request body:
cubeKey | Required. The logical name of the cube whose size is in question. |
Example Request
-
Request Method:
POST
-
Request URL:
http://localhost:52773/api/deepsee/v2/Command/GetCubeSize
For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.
-
Request Body:
{ "cubeKey":"Patients" }
Example Response
{
"cubeSize": 1000,
"Error": "",
"status": 1
}
For information that applies to all response objects, see Notes on the Response Objects.