Project Management

Create Project

Introduction

Create a new project in your default organization.

Description

Create a project with the specified name and programming language. If the project-name already exists, API call returns success:false with exception details in the errors array.

Request

Name and language of the project to create. The /projects/create API accepts requests in the following format:

CreateProjectRequest Model - Request to create a project.
name string
Project name.
language string Enum
Programming langage to use. Options : ['C#', 'Py']
Example
{
  "name": "string",
  "language": "C#"
}

Responses

The /projects/create API provides a response in the following format:

200 Success

ProjectListResponse Model - Project list response.
projects Project Array
List of projects for the authenticated user.
success boolean
Indicate if the API request was successful.
errors string Array
List of errors with the API call.
Example
{
  "projects": [
    {
      "projectId": 0,
      "name": "string",
      "created": "2021-11-26T15:18:27.693Z",
      "modified": "2021-11-26T15:18:27.693Z",
      "language": "C#"
    }
  ],
  "success": true,
  "errors": [
    "string"
  ]
}
Project Model - Response from reading a project by id.
projectId integer
Project id.
name string
Name of the project.
created string($date-time)
Date the project was created.
modified string($date-time)
Modified date for the project.
language string Enum
Programming language of the project. Options : ['C#', 'Py']
Example
{
  "projectId": 0,
  "name": "string",
  "created": "2021-11-26T15:18:27.693Z",
  "modified": "2021-11-26T15:18:27.693Z",
  "language": "C#"
}

401 Authentication Error

UnauthorizedError Model - Unauthorized response from the API. Key is missing, invalid, or timestamp is too old for hash.
www_authenticate string
Header

You can also see our Videos. You can also get in touch with us via Discord.

Did you find this page helpful?

Contribute to the documentation: