Get timesheets for a week by date
Headers
-
TARGET-ORGANIZATION-ID integer(int32)
ID of organization, for which the operation must be performed
-
API token (can be retrieved from account settings)
Path parameters
-
date
GET /api-v1/my-timesheet/{date}
curl \
-X GET http://10.10.10.132/api-v1/my-timesheet/{date} \
-H "TARGET-ORGANIZATION-ID: 42" \
-H "WEAL-TOKEN: string"
Response examples (200)
{
"dayTimesheets": [
{
"date": "2024-05-04T09:42:00+00:00",
"timeEntries": [
{
"clientId": 42,
"clientName": "string",
"date": "string",
"description": "string",
"endTime": "2024-05-04T09:42:00+00:00",
"id": 42,
"isBillable": true,
"isLocked": true,
"orderId": 42,
"orderName": "string",
"startTime": "2024-05-04T09:42:00+00:00",
"status": "UNSUBMITTED",
"taskId": 42,
"taskName": "string",
"time": "string"
}
],
"total": 42.0
}
],
"locked": true,
"total": 42.0
}