GET api/timecard/{clientId}/Timecards?reportingDate={reportingDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

string

Required

reportingDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EmployeeTimecardDTO
NameDescriptionTypeAdditional information
EmployeeID

string

None.

FirstName

string

None.

LastName

string

None.

Shift

string

None.

ReportedDate

date

None.

FirstInPunch

date

None.

LastOutPunch

date

None.

TotalHours

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EmployeeID": "sample string 1",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "Shift": "sample string 4",
    "ReportedDate": "2026-02-04T01:37:51.9655218-08:00",
    "FirstInPunch": "2026-02-04T01:37:51.9655218-08:00",
    "LastOutPunch": "2026-02-04T01:37:51.9655218-08:00",
    "TotalHours": 5.0
  },
  {
    "EmployeeID": "sample string 1",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "Shift": "sample string 4",
    "ReportedDate": "2026-02-04T01:37:51.9655218-08:00",
    "FirstInPunch": "2026-02-04T01:37:51.9655218-08:00",
    "LastOutPunch": "2026-02-04T01:37:51.9655218-08:00",
    "TotalHours": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployeeTimecardDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WurkNowDTO.ClientApi">
  <EmployeeTimecardDTO>
    <EmployeeID>sample string 1</EmployeeID>
    <FirstInPunch>2026-02-04T01:37:51.9655218-08:00</FirstInPunch>
    <FirstName>sample string 2</FirstName>
    <LastName>sample string 3</LastName>
    <LastOutPunch>2026-02-04T01:37:51.9655218-08:00</LastOutPunch>
    <ReportedDate>2026-02-04T01:37:51.9655218-08:00</ReportedDate>
    <Shift>sample string 4</Shift>
    <TotalHours>5</TotalHours>
  </EmployeeTimecardDTO>
  <EmployeeTimecardDTO>
    <EmployeeID>sample string 1</EmployeeID>
    <FirstInPunch>2026-02-04T01:37:51.9655218-08:00</FirstInPunch>
    <FirstName>sample string 2</FirstName>
    <LastName>sample string 3</LastName>
    <LastOutPunch>2026-02-04T01:37:51.9655218-08:00</LastOutPunch>
    <ReportedDate>2026-02-04T01:37:51.9655218-08:00</ReportedDate>
    <Shift>sample string 4</Shift>
    <TotalHours>5</TotalHours>
  </EmployeeTimecardDTO>
</ArrayOfEmployeeTimecardDTO>