Get timesheets for a week by date

GET /api-v1/my-timesheet/{date}

Headers

Path parameters

Responses

GET /api-v1/my-timesheet/{date}
curl \
 -X GET http://wyzio.app/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
}