Create timesheet

POST /timesheets

Manage your timesheets.

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 object Required

One of:

Responses

  • 200 application/json

    Successful response

    One of:
  • 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.

  • Conflict. Timesheet has already been created for the time period.

  • Too Many Requests or outbound size quota exhausted.

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

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
{
  "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)
{
  "_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": {}
}