Update project
Manage a specific project belonging to your organization.
Path parameters
-
projectId
string Required The project's unique document ID.
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. -
customProperties
array[object] Display custom properties on the project's information page that are not supported by missionX out of the box.
curl \
--request PATCH 'https://open.api.missionx.ai/v1/projects/{projectId}' \
--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"],"customProperties":[{"name":"string","canView":"member","description":"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"
],
"customProperties": [
{
"name": "string",
"canView": "member",
"description": "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"
}
]
}
{
"message": "string",
"code": "string",
"data": {}
}
{
"message": "string",
"code": "string",
"data": {}
}