Logo
MicroStrategy REST API API Documentation

Fetching multi manipulations statuses with provided multi manipulation IDs

POST {{baseUrl}}/api/monitors/caches/cubes/manipulations/statuses

Fetching multi manipulations statuses with provided multi manipulation IDs.You obtain the authorization token needed to execute the request using POST /auth/login; You must need to set the content-type value 'application/x-www-form-urlencoded', then set the request body as 'x-www-form-urlencoded' way, the body input is like 'manipulationIds=id1,id2,...,idN', you can get the manipulation id from API PATCH /api/monitors/caches/cubes/{cacheId}.

 

Body PARAM

Key Datatype Required Description 
fields
null Comma-separated, top-level field whitelist that allows the client to selectively retrieve part of the response model. If specified, extra filtering is applied, and for top-level object (if root model is an array, each array element), only the listed fields are kept in the response. For example, "id,elements" keeps only the "id" field and whole "elements" array field, omitting all other fields in the top-level response model.



HEADERS

Key Datatype Required Description 
X-MSTR-AuthToken
string (Required) Authorization token
X-HTTP-Method-Override
string (Required) The X-HTTP-Method-Override HTTP header works somewhat similar to a hack. You can add the header with a value of either PUT, GET or DELETE when invoking your corresponding API by using an HTTP POST call
Content-Type
string




RESPONSES

status OK

{ "statuses": [ { "manipulationId": "RDc1RUUwMzI4RTQwQUJERDI0OEYxOTlCOURBRDU2ODE6ZW52LTI3NjY4NmxhaW91c2Ux", "status": "ready" } ] }

Curl
curl -X POST 'baseUrl/api/monitors/caches/cubes/manipulations/statuses?fields=' -H 'X-MSTR-AuthToken: authToken' -H 'X-HTTP-Method-Override: get' -H 'Content-Type: application/x-www-form-urlencoded' --data-urlencode '%7B%22name%22%3D%3E%22manipulationIds%22%2C+%22value%22%3D%3E%22rd_manipulationId%22%2C+%22datatype%22%3D%3E%22string%22%7D'

ENDPOINTS