Query parameters
-
notify
string If set to
0
orfalse
, then all notifications associated with this operation will be disabled. This includes push notifications, emails and asynchronous UI updates. Useful for bulk operations.
Body
Required
-
startDate
string(date-time) Required The start date in ISOString format. See .toISOString().
-
endDate
string(date-time) Required 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 Required 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 Required Determines the type of project. Cannot be changed later.
Values are
smart-simple
,modern-kanban
,mx-gantt
, orstructured-agile
. -
people
array[object] Required 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 \
--request POST 'https://open.api.missionx.ai/v1/projects' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"startDate":"2025-05-04T09:42:00Z","endDate":"2025-05-04T09:42:00Z","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:00Z","endDate":"2025-05-04T09:42:00Z","departments":["string"],"hoursNeeded":42.0,"role":"string","roleTitle":"string"}]}'
{
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"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:00Z",
"endDate": "2025-05-04T09:42:00Z",
"departments": [
"string"
],
"hoursNeeded": 42.0,
"role": "string",
"roleTitle": "string"
}
]
}
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"org": "string",
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"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": {}
}