GET api/RapidClocking/EmpTracking/EmployeeTimeCardLog?employeeID={employeeID}&startingDate={startingDate}&endingDate={endingDate}&includePhoto={includePhoto}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employeeID

integer

Required

startingDate

date

None.

endingDate

date

None.

includePhoto

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of EmployeeTimeCardLog
NameDescriptionTypeAdditional information
UTCActionTime

date

Required

ActionProviderID

integer

Required

ActionTypeID

integer

Required

PhotoID

string

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UTCActionTime": "2025-05-02T08:49:36.46Z",
    "ActionProviderID": 2,
    "ActionTypeID": 3,
    "PhotoID": "sample string 4",
    "Comment": "sample string 5"
  },
  {
    "UTCActionTime": "2025-05-02T08:49:36.46Z",
    "ActionProviderID": 2,
    "ActionTypeID": 3,
    "PhotoID": "sample string 4",
    "Comment": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployeeTrackingModel.EmployeeTimeCardLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.OnTheGo.Models">
  <EmployeeTrackingModel.EmployeeTimeCardLog>
    <ActionProviderID>2</ActionProviderID>
    <ActionTypeID>3</ActionTypeID>
    <Comment>sample string 5</Comment>
    <PhotoID>sample string 4</PhotoID>
    <UTCActionTime>2025-05-02T08:49:36.4606817+00:00</UTCActionTime>
  </EmployeeTrackingModel.EmployeeTimeCardLog>
  <EmployeeTrackingModel.EmployeeTimeCardLog>
    <ActionProviderID>2</ActionProviderID>
    <ActionTypeID>3</ActionTypeID>
    <Comment>sample string 5</Comment>
    <PhotoID>sample string 4</PhotoID>
    <UTCActionTime>2025-05-02T08:49:36.4606817+00:00</UTCActionTime>
  </EmployeeTrackingModel.EmployeeTimeCardLog>
</ArrayOfEmployeeTrackingModel.EmployeeTimeCardLog>