Path parameters
-
timesheetId
string Required The timesheet unique document ID, i.e.
timesheet._id
.
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.
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": {}
}