v2

latestOpenAPI 3.0.12026-07-31690160432.4 KB
Projects

Create a new project

Creates a new project within a given space.

post/v1/spaces/{spaceId}/projects

Path parameters

spaceIdinteger required

ID of the space

Headers

X-Org-Idinteger required

Organization ID

Request body

namestring required

Name of the project

descriptionstring

Description of the project

isPublicboolean

Indicates if the project is public

startDatestring date-time

Start date of the project

dueDatestring date-time

Due date of the project

statusstring

Status of the project

prioritystring

Priority of the project

healthstring

Health of the project

projectTagsstring[]

List of tags associated with the project

contactinteger

Contact ID associated with the project

actualStartDatestring date-time

Actual start date of the project

actualEndDatestring date-time

Actual end date of the project

allocatedBudgetnumber double

Budget allocated for the project

billableCostnumber double

Billable cost of the project so far

nonBillableCostnumber double

Non-billable cost of the project so far

totalCostnumber double

Total cost of the project (billable + non-billable)

Example request

{
  "name": "Project Alpha",
  "description": "This is a sample project",
  "isPublic": true,
  "status": "In Progress",
  "priority": "High",
  "health": "Good",
  "projectTags": [
    "tag1",
    "tag2"
  ],
  "contact": 12345,
  "allocatedBudget": 500000,
  "billableCost": 200000,
  "nonBillableCost": 50000,
  "totalCost": 250000
}

Response

OK