Missing Timesheet between two date ranges

The getMissingTimesheetStubList API call retrieves a list of missing timesheets within a specified date range. Use this call to identify timesheets that have not been submitted or recorded between the provided start and end dates.

Request Header

Include the API key in the header to authenticate the request.

{
    "Content-Type": "application/json",
    "api-key": "your_api_key"
}

Parameters

To define the date range, specify the following parameters in YYYY-MM-DD format:

{
    "dateFrom": "2024-01-01", // Start date of the range
    "dateTo": "2024-01-31"    // End date of the range
}

Example Request

https://api.data-basics.net/apihub/apis/getMissingTimesheetStubList?dateFrom=2024-01-01&dateTo=2024-01-31

Response

The response will provide a list of employees or users who have missing timesheets within the specified date range, along with details for each entry, allowing for an overview of unsubmitted timesheets.