Query parameters
-
If set to
0orfalse, 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
-
The start date in ISOString format. See .toISOString().
-
The end date in ISOString format. See .toISOString().
-
expandableThe client's (or vendor, account, etc.) unique document ID referencing the organization's client, i.e.org.clients[]._id. -
A custom identifier for internal reference by your system (not used by missionX).
-
The title of your project.
-
A description of your project.
-
A custom identifier for your project.
-
The status of the project.
Values are
open,completed, orcancelled. Default value isopen. -
References the organization's departments, i.e.
org.departments[]._id. -
References the organization's offices, i.e.
org.offices[]._id. -
The project's billing scope.
Values are
milestonesortimeAndMaterials. -
The total project budget.
Minimum value is
0. -
If true, time tracking features will be enabled for this project.
Default value is
false. -
The project's default currency in ISO 4217 format. E.g. EUR, CAD, USD, etc. If not provided, inherits from the organization.
-
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. -
Determines the type of project. Cannot be changed later.
Values are
smart-simple,modern-kanban,mx-gantt, orstructured-agile. -
The initial people to be invited to the project during creation. At least one person with a
permissionofadminis required, that is already part of the organization with the providedemailand one of the following organization permissions:admin,manager,projectManager. -
Display custom properties on the project's information page that are not supported by missionX out of the box.
-
Create one or more plan items for this project.
curl \
--request POST 'https://open.api.missionx.ai/v2/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","person":{"firstName":"string","lastName":"string","avatar":"string","city":"string","country":"string","state":"string","timezone":"string"},"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","person":"string","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",
"person": {
"firstName": "string",
"lastName": "string",
"avatar": "string",
"city": "string",
"country": "string",
"state": "string",
"timezone": "string"
},
"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",
"person": "string",
"departments": [
"string"
],
"hoursNeeded": 42.0,
"role": "string",
"roleTitle": "string"
}
]
}
{
"archived": true,
"_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": {
"_id": "string",
"firstName": "string",
"lastName": "string",
"avatar": "string",
"city": "string",
"country": "string",
"state": "string",
"timezone": "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": {}
}