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