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
object
Required
POST
/timesheets
curl \
--request POST 'https://open.api.missionx.ai/v1/timesheets' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"type":"company","status":"draft","customId":"string","person":"string","entries":[{"description":"string","hours":[{"day":"MON","value":42.0}],"codeId":"string"}]}'
Request examples
Timesheetcompany
{
"type": "company",
"status": "draft",
"customId": "string",
"person": "string",
"entries": [
{
"description": "string",
"hours": [
{
"day": "MON",
"value": 42.0
}
],
"codeId": "string"
}
]
}
{
"type": "company",
"status": "draft",
"customId": "string",
"planItem": "string",
"entries": [
{
"description": "string",
"hours": [
{
"day": "MON",
"value": 42.0
}
],
"codeId": "string",
"taskId": "string"
}
]
}
Response examples (200)
Timesheetcompany
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"type": "company",
"status": "draft",
"customId": "string",
"weekStart": "string",
"weekEnd": "string",
"person": "string",
"entries": [
{
"description": "string",
"hours": [
{
"day": "MON",
"value": 42.0
}
],
"codeId": "string"
}
]
}
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"type": "company",
"status": "draft",
"customId": "string",
"weekStart": "string",
"weekEnd": "string",
"planItem": "string",
"project": "string",
"entries": [
{
"description": "string",
"hours": [
{
"day": "MON",
"value": 42.0
}
],
"codeId": "string",
"taskId": "string"
}
]
}
Response examples (400)
{
"message": "string",
"code": "string",
"data": {}
}
Response examples (500)
{
"message": "string",
"code": "string",
"data": {}
}