Logo
MicroStrategy REST API API Documentation

Get the status of a cube

HEAD {{baseUrl}}/api/cubes/:cubeId

Get the status of a specific cube in a specific project. You obtain the authorization token needed to execute the request using POST /auth/login; you obtain the project ID using GET /projects. You pass the authorization token and the project ID in the request header. You specify the cube ID in the path of the request. The status is returned in HEADER X-MSTR-CubeStatus with a value from EnumDSSCubeStates, which is a bit vector.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
X-MSTR-AuthToken
string (Required) Authorization token
X-MSTR-ProjectID
string (Required) Project ID




RESPONSES

status OK





Curl
curl -X HEAD 'baseUrl/api/cubes/:cubeId' -H 'X-MSTR-AuthToken: authToken' -H 'X-MSTR-ProjectID: projectId'

ENDPOINTS