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.

Request Params

KeyDatatypeRequiredDescription
fieldsnullComma-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.

Request Body

{"name"=>"My Test Project", "description"=>"Test Project Created by REST API Workflow"}

HEADERS

KeyDatatypeRequiredDescription
X-MSTR-AuthTokenstring(Required) Authorization token
X-MSTR-AsyncModebooleanSpecifies whether to make the call synchronously or asynchronously; make the call asynchronously if set to true