Body Required
-
startDate string(date-time)
The start date in ISOString format. See .toISOString().
-
endDate string(date-time)
The end date in ISOString format. See .toISOString().
-
client string(ObjectId)
expandable
The client's (or vendor, account, etc.) unique document ID referencing the organization's client, i.e.org.clients[]._id
. -
customId string
A custom identifier for internal reference by your system (not used by missionX).
-
title string
The title of your project.
-
description string
A description of your project.
-
projectCode string
A custom identifier for your project.
-
projectStatus string
The status of the project.
Values are
open
,completed
, orcancelled
. Default value isopen
. -
departments array[string(ObjectId)]
References the organization's departments, i.e.
org.departments[]._id
. -
offices array[string(ObjectId)]
References the organization's offices, i.e.
org.offices[]._id
. -
revenueType string
The project's billing scope.
Values are
milestones
ortimeAndMaterials
. -
budget number(float)
The total project budget.
Minimum value is
0
. -
timeTrackingEnabled boolean
If true, time tracking features will be enabled for this project.
Default value is
false
. -
currency string(currency)
The project's default currency in ISO 4217 format. E.g. EUR, CAD, USD, etc. If not provided, inherits from the organization.
-
inviteDomains array[string]
Restricts invites to the project only to these email domains, e.g.
['missionx.ai']
. If not provided, defaults to a single value of['ANY']
where any email domain can be invited to the project. -
projectType string
Determines the type of project. Cannot be changed later.
Values are
smart-simple
,modern-kanban
,mx-gantt
, orstructured-agile
. -
people array[object]
The initial people to be invited to the project during creation. At least one person with a
permission
ofadmin
is required, that is already part of the organization with the providedemail
and one of the following organization permissions:admin
,manager
,projectManager
. -
customProperties array[object]
Display custom properties on the project's information page that are not supported by missionX out of the box.
-
planItems array[object]
Create one or more plan items for this project.
curl \
-X POST https://open.api.missionx.ai/v1/projects \
-H "Content-Type: application/json" \
-d '{"startDate":"2025-05-04T09:42:00+00:00","endDate":"2025-05-04T09:42:00+00:00","client":"string","customId":"string","title":"string","description":"string","projectCode":"string","projectStatus":"open","departments":["string"],"offices":["string"],"revenueType":"milestones","budget":42.0,"timeTrackingEnabled":false,"currency":"string","inviteDomains":["string"],"projectType":"smart-simple","people":[{"permission":"member","role":"string","roleTitle":"string","email":"hello@example.com","isProjectManager":false,"rate":42.0,"rateTime":"oneTime"}],"customProperties":[{"name":"string","canView":"member","description":"string"}],"planItems":[{"type":"role","customId":"string","startDate":"2025-05-04T09:42:00+00:00","endDate":"2025-05-04T09:42:00+00:00","departments":["string"],"hoursNeeded":42.0,"role":"string","roleTitle":"string"}]}'
{
"startDate": "2025-05-04T09:42:00+00:00",
"endDate": "2025-05-04T09:42:00+00:00",
"client": "string",
"customId": "string",
"title": "string",
"description": "string",
"projectCode": "string",
"projectStatus": "open",
"departments": [
"string"
],
"offices": [
"string"
],
"revenueType": "milestones",
"budget": 42.0,
"timeTrackingEnabled": false,
"currency": "string",
"inviteDomains": [
"string"
],
"projectType": "smart-simple",
"people": [
{
"permission": "member",
"role": "string",
"roleTitle": "string",
"email": "hello@example.com",
"isProjectManager": false,
"rate": 42.0,
"rateTime": "oneTime"
}
],
"customProperties": [
{
"name": "string",
"canView": "member",
"description": "string"
}
],
"planItems": [
{
"type": "role",
"customId": "string",
"startDate": "2025-05-04T09:42:00+00:00",
"endDate": "2025-05-04T09:42:00+00:00",
"departments": [
"string"
],
"hoursNeeded": 42.0,
"role": "string",
"roleTitle": "string"
}
]
}
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00+00:00",
"updatedAt": "2025-05-04T09:42:00+00:00",
"org": "string",
"startDate": "2025-05-04T09:42:00+00:00",
"endDate": "2025-05-04T09:42:00+00:00",
"client": "string",
"customId": "string",
"title": "string",
"description": "string",
"projectCode": "string",
"projectStatus": "open",
"departments": [
"string"
],
"offices": [
"string"
],
"revenueType": "milestones",
"budget": 42.0,
"timeTrackingEnabled": false,
"currency": "string",
"inviteDomains": [
"string"
],
"projectType": "smart-simple",
"usageStorage": 0,
"planItems": [
"string"
],
"customProperties": [
{
"name": "string",
"canView": "member",
"description": "string"
}
],
"people": [
{
"_id": "string",
"permission": "member",
"person": "string",
"role": "string",
"roleTitle": "string",
"email": "hello@example.com",
"isProjectManager": false,
"rate": 42.0,
"rateTime": "oneTime",
"invitePendingSince": 42.0,
"praise": 42.0
}
]
}
{
"message": "string",
"code": "string",
"data": {}
}
{
"message": "string",
"code": "string",
"data": {}
}