missingTimesheets
Url
/V2.0/services/data/missingTimesheets
HTTP Method
GET
Description
Get the information about missing timesheets 
Parameters
Name Type Description
user* entityId (string) The Id of the user
startDate* dateTime The start of the time period (including)
endDate* dateTime The end of the time period (excluding)
tolerance integer Tolerance in minutes, default is 5
Result
Name Type Description
user entityId (string) The Id of the user
missingTimesheets missingTimesheets[] The list of missing timesheets
In case of failure an error object will be returned
* indicates required fields
Samples
Get missing timesheets for the user from January 1, 2020 to January 06, 2020
GET /V2.0/services/data/missingTimesheets?
user=/User/65yb7nbdtin2jh8rk1cnm76d82043&startDate=2020-01-01&endDate=2020-01-06
Response:
{
  "user": "/User/65yb7nbdtin2jh8rk1cnm76d82043",
  "missingTimesheets": [
    {
      "date": "2020-01-01T00:00:00.0000000Z",
      "workingHours": 8.0,
      "reportedHours": 0.0,
      "missingHours": 8.0
    },
    {
      "date": "2020-01-02T00:00:00.0000000Z",
      "workingHours": 8.0,
      "reportedHours": 2.0,
      "missingHours": 6.0
    },
    {
      "date": "2020-01-03T00:00:00.0000000Z",
      "workingHours": 7.0,
      "reportedHours": 2.5,
      "missingHours": 4.5
    }
  ]
}