Logo
MicroStrategy REST API API Documentation

Get contents of My Personal Objects folder

GET {{baseUrl}}/api/folders/myPersonalObjects

Get the contents of My Personal Objects folder 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.

 

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-MSTR-ProjectID
string (Required) Project ID




RESPONSES

status OK

[ { "name": "My Answers", "id": "E28802DC11E5B55F088C0080EF555BA1", "type": 8, "subtype": 2048, "dateCreated": "2016-01-07T16:58:33.000+0000", "dateModified": "2018-12-12T13:07:06.000+0000", "version": "D32B582A11E8FE0E1CC50080EFD53E79", "acg": 255, "owner": { "name": "Administrator", "id": "54F3D26011D2896560009A8E67019608" }, "extType": 0 }, { "name": "My Dossiers", "id": "F0328F8511E6283B16650080EF35CCEC", "type": 8, "subtype": 2048, "dateCreated": "2016-06-01T21:00:58.000+0000", "dateModified": "2022-03-02T20:41:49.000+0000", "version": "76156B21D64584D1BD68F0A8A61A5057", "acg": 255, "owner": { "name": "Administrator", "id": "54F3D26011D2896560009A8E67019608" }, "extType": 0 } ]

Curl
curl -X GET 'baseUrl/api/folders/myPersonalObjects?fields=' -H 'X-MSTR-AuthToken: authToken' -H 'X-MSTR-ProjectID: projectId'

ENDPOINTS