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 offromDate
andtoDate
cannot exceed a month. -
toDate
string Required if
fromDate
is provided. Date in ISOString to filter by theweekEnd
field. Gets converted to end of ISO week. Defaults to end of ISO week of today. Note: The difference offromDate
andtoDate
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
orproject
. -
updatedAt
string 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 arelt
= lower than,lte
= lower than or equal,gt
= greater than,gte
= greater than or equal. The date is in ISOString.
curl \
--request GET 'https://open.api.missionx.ai/v1/timesheets' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"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"
}
]
}
]
}