GET
/api-v1/my-timesheet/{date}
curl \
--request GET 'https://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
}