Update a timesheet

PATCH /timesheets/{timesheetId}

Manage timesheets.

Path parameters

  • timesheetId string Required

    The timesheet unique document ID, i.e. timesheet._id.

Query parameters

  • notify string

    If set to 0 or false, then all notifications associated with this operation will be disabled. This includes push notifications, emails and asynchronous UI updates. Useful for bulk operations.

application/json

Body Required

  • status string

    The current status of the timesheet.

    Values are draft, submitted, approved, or rejected.

  • customId string

    A custom identifier for internal reference by your system (not used by missionX).

  • entries array

    For available properties see entries on creating a timesheet.

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • _id string(ObjectId)

      The unique document ID.

    • createdBy string(ObjectId)

      The creator's unique document ID.

    • createdAt string(date-time)

      The date the document was created in ISOString format. See .toISOString().

    • updatedAt string(date-time)

      The date the document was last updated in ISOString format. See .toISOString().

    • type string

      Determines how a plan item behaves, being tracked and/or affects budgeting. Once set, it cannot be changed.

      Values are role, cost, milestone, or phase.

    • 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.

    • project string(ObjectId)

      Reference to the project it belongs to.

    • 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.

    • The title of the role. E.g. Director of Sales

  • 400 application/json

    Bad Request

    Hide response attributes Show response attributes object
    • message string

      An error message.

    • code string

      An error code to handle specific error responses.

    • data object

      Optionally, additional data to help handle the error.

      Additional properties are allowed.

  • 500 application/json

    Internal Server Error

    Hide response attributes Show response attributes object
    • message string

      An error message.

    • code string

      An error code to handle specific error responses.

    • data object

      Optionally, additional data to help handle the error.

      Additional properties are allowed.

PATCH /timesheets/{timesheetId}
curl \
 --request PATCH 'https://open.api.missionx.ai/v1/timesheets/{timesheetId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"status":"draft","customId":"string","entries":[]}'
Request examples
{
  "status": "draft",
  "customId": "string",
  "entries": []
}
Response examples (200)
{
  "_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"
}
Response examples (400)
{
  "message": "string",
  "code": "string",
  "data": {}
}
Response examples (500)
{
  "message": "string",
  "code": "string",
  "data": {}
}