POST api/RapidClocking/EmpTracking/SendTimecardLog
Request Information
URI Parameters
None.
Body Parameters
ClockingLogInfoName | Description | Type | Additional information |
---|---|---|---|
EmployeeID | integer |
None. |
|
ActionProviderID | integer |
None. |
|
ActionTypeID | integer |
None. |
|
UTCActionTimeStamp | date |
None. |
|
GPSLat | decimal number |
None. |
|
GPSLong | decimal number |
None. |
|
Velocity | decimal number |
None. |
|
IsGPSFineGrain | boolean |
None. |
|
IsDelivered | boolean |
None. |
|
PhotoID | string |
None. |
|
Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "EmployeeID": 1, "ActionProviderID": 2, "ActionTypeID": 3, "UTCActionTimeStamp": "2025-05-02T12:13:39.488Z", "GPSLat": 5.0, "GPSLong": 6.0, "Velocity": 7.1, "IsGPSFineGrain": true, "IsDelivered": true, "PhotoID": "sample string 10", "Comment": "sample string 11" }
application/xml, text/xml
Sample:
<EmployeeTrackingModel.ClockingLogInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.RapidClocking.Models"> <ActionProviderID>2</ActionProviderID> <ActionTypeID>3</ActionTypeID> <Comment>sample string 11</Comment> <EmployeeID>1</EmployeeID> <GPSLat>5</GPSLat> <GPSLong>6</GPSLong> <IsDelivered>true</IsDelivered> <IsGPSFineGrain>true</IsGPSFineGrain> <PhotoID>sample string 10</PhotoID> <UTCActionTimeStamp>2025-05-02T12:13:39.4885087+00:00</UTCActionTimeStamp> <Velocity>7.1</Velocity> </EmployeeTrackingModel.ClockingLogInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.