Logo
MicroStrategy REST API API Documentation

Update report instance do manipulations like changing template, view filters, metric limits and sorting on top of the instance

PUT {{baseUrl}}/api/v2/reports/:reportId/instances/:instanceId

Do manipulations on top of the specified instance

 

Body PARAM

Key Datatype Required Description 
offset
number Starting point within the collection of returned results. Used to control paging behavior.
limit
number Maximum number of items returned for a single request. Used to control paging behavior. Use -1 for no limit.
standardDateFormat
boolean Standard date format in ISO8601
standardRawDateFormat
boolean Standard raw date format in ISO8601
fields
null Field selector. This allows client to exclude unneeded information from response model. It can be either empty, or a combination of following exclusion rules separated by comma: '-data.metricValues.raw' / '-data.metricValues.formatted' / '-data.metricValues.extras'.



HEADERS

Key Datatype Required Description 
X-MSTR-AuthToken
string (Required) Authorization token
X-MSTR-ProjectID
Curl
curl -X PUT 'baseUrl/api/v2/reports/:reportId/instances/:instanceId?offset=0&limit=-1&standardDateFormat=true&standardRawDateFormat=true&fields=' -H 'X-MSTR-AuthToken: authToken' -H 'X-MSTR-ProjectID: projectId' -H 'Content-Type: application/json'

ENDPOINTS