Get timesheets for a week by date

GET /api-v1/my-timesheet/{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

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • dayTimesheets array[object]
      Hide dayTimesheets attributes Show dayTimesheets attributes object
      • date string(date-time)
      • timeEntries array[object]
        Hide timeEntries attributes Show timeEntries attributes object
        • clientId integer
        • clientName string
        • date string
        • description string
        • endTime string(date-time)
        • id integer
        • isBillable boolean
        • isLocked boolean
        • orderId integer
        • orderName string
        • startTime string(date-time)
        • status string

          Values are UNSUBMITTED, SUBMITTED, REJECTED, APPROVED, or BILLED.

        • taskId integer
        • taskName string
        • time string
      • total number
    • locked boolean
    • total number
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

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
}