Logo
MicroStrategy REST API API Documentation

Create project for authenticated user

POST {{baseUrl}}/api/projects

Create a new project, either synchronously or asynchronously. It can take several minutes to create a project. To fetch the actual project information, you need to poll using GET projects/{name}. You obtain the authorization token needed to execute the request using POST /auth/login; you pass the authorization token in the request header. You specify whether to make the call synchronously or asynchronously in the request header. You provide the project name in the body parameter of the request.

 

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-AsyncMode
boolean Specifies whether to make the call synchronously or asynchronously; make the call asynchronously if set to true
Content-Type
string




RESPONSES

status Created



Curl
curl -X POST 'baseUrl/api/projects?fields=' -H 'X-MSTR-AuthToken: authToken' -H 'X-MSTR-AsyncMode: true' -H 'Content-Type: application/json' -d '{"name":"Test Project","description":"Project description."}'

ENDPOINTS