Logo
MicroStrategy REST API API Documentation

Get list of all projects from metadata.

GET {{baseUrl}}/api/monitors/projects

Get list of all projects from metadata.

 

Body PARAM

Key Datatype Required Description 
offset
number Starting point within the collection of returned results. Used to control paging behavior. Default is 0.
limit
number Maximum number of items returned for a single request. Used to control paging behavior. Use -1 for no limit.
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




RESPONSES

status OK

{ "projects": [ { "name": "MicroStrategy Tutorial", "id": "B7CA92F04B9FAE8D941C3E9B7E0CD754", "description": "MicroStrategy Tutorial project and application set designed to illustrate the platform's rich functionality. The theme is an Electronics, Books, Movies and Music store. Employees, Inventory, Finance, Product Sales and Suppliers are analyzed.", "dateCreated": "2015-06-30T21:55:35.000+0000", "dateModified": "2022-02-28T20:43:01.000+0000", "owner": { "name": "Administrator", "id": "54F3D26011D2896560009A8E67019608" } }, { "name": "Consolidated Education Project", "id": "CE52831411E69
Curl
curl -X GET 'baseUrl/api/monitors/projects?offset=0&limit=-1&fields=' -H 'X-MSTR-AuthToken: authToken'

ENDPOINTS