List timesheets

GET /timesheets

Manage your timesheets.

Query parameters

  • fromDate string

    Optional date in ISOString to filter by the weekStart field. Gets converted to start of ISO week. Defaults to start of ISO week of 1 month in the past. Note: The difference of fromDate and toDate cannot exceed a month.

  • toDate string

    Required if fromDate is provided. Date in ISOString to filter by the weekEnd field. Gets converted to end of ISO week. Defaults to end of ISO week of today. Note: The difference of fromDate and toDate cannot exceed a month.

  • status string

    One or more statuses to filter the timesheets by.

  • type string

    The timesheet type to filter timesheets by. That is, either company or project.

  • A date query to filter the results by the last updatedAt field. Format is [operation] [date], e.g. updatedAt=gt 2025-02-24T00:00:00.000Z. Acceptable operations are lt = lower than, lte = lower than or equal, gt = greater than, gte = greater than or equal. The date is in ISOString.

Responses

  • 200 application/json

    Successful response

    Hide response attribute Show response attribute object
    • value array[object]
      One of:
GET /timesheets
curl \
 --request GET 'https://open.api.missionx.ai/v1/timesheets' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "value": [
    {
      "_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"
        }
      ]
    }
  ]
}