Update plan item
Manage plan items, i.e. resource roles, cost or revenue items, milestones and phases.
Path parameters
-
planItemId
string Required The plan item's unique document ID, i.e.
project.planItems[]
.
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
-
customId
string A custom identifier for internal reference by your system (not used by missionX).
-
startDate
string(date-time) The start date in ISOString format. See .toISOString(). If omitted, defaults to the project's start date.
-
endDate
string(date-time) The end date in ISOString format. See .toISOString(). If omitted, defaults to the project's end date.
-
departments
array[string(ObjectId)] One or more departments this role is associated with. References the organization's departments, i.e.
org.departments[]._id
. -
hoursNeeded
number(integer) The total hours required for this role.
-
role
string(ObjectId) A role associated with this plan item. References the organization's role, i.e.
org.roles[]._id
. -
roleTitle
string The title of the role. E.g. Director of Sales
curl \
--request PATCH 'https://open.api.missionx.ai/v1/planItems/{planItemId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"customId":"string","startDate":"2025-05-04T09:42:00Z","endDate":"2025-05-04T09:42:00Z","departments":["string"],"hoursNeeded":42.0,"role":"string","roleTitle":"string"}'
{
"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",
"type": "role",
"customId": "string",
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"project": "string",
"departments": [
"string"
],
"hoursNeeded": 42.0,
"role": "string",
"roleTitle": "string"
}
{
"message": "string",
"code": "string",
"data": {}
}
{
"message": "string",
"code": "string",
"data": {}
}