Gets a paginated list of timesheet entries recorded for a given time period with optional filtering by project offering, approval status, and etc. When no start or end date filters are provided, returns entries from the last 7 days (7 days ago through today).
Filter by entries recorded on or after this date. When not provided, defaults to 7 days ago from today. Currently, this endpoint requires the queried date range to not exceed 31 days. You must specify an end date filter when specifying this value. ISO date formatting expected (yyyy-MM-dd)
Optional filter for entries with an approval status change on or after this date. Currently, this endpoint requires the queried date range to not exceed 31 days. You must specify an approval status end date filter when specifying this value. ISO date formatting expected (yyyy-MM-dd)
- Mock serverhttps://developer.getparallax.com/_mock/api-documentation/swagger/v1/timesheet-entries
- Production Serverhttps://api.getparallax.com/v1/timesheet-entries
curl -i -X GET \
'https://developer.getparallax.com/_mock/api-documentation/swagger/v1/timesheet-entries?page=0&page_size=0&start_date=2019-08-24&end_date=2019-08-24&approval_status=open&approval_status_start_date=2019-08-24&approval_status_end_date=2019-08-24&project_id=497f6eca-6276-4993-bfeb-53cbbbba6f08&project_offering_id=497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'OK
The array of result objects for the current page.
{ "count": 0, "total": 0, "page": 0, "total_pages": 0, "page_size": 0, "results": [ { … } ] }