POST api/OnTheGo/EmpTracking/SendTrackingInfo
Request Information
URI Parameters
None.
Body Parameters
Collection of TrackingInfoName | Description | Type | Additional information |
---|---|---|---|
EmployeeID | integer |
None. |
|
UTCTrackingTimeStamp | date |
None. |
|
GPSLat | decimal number |
None. |
|
GPSLong | decimal number |
None. |
|
GPSAddress | string |
None. |
|
Velocity | decimal number |
None. |
|
IsGPSFineGrain | boolean |
None. |
|
IsDelivered | boolean |
None. |
|
DeviceID | string |
None. |
|
DevicePowerPercent | integer |
None. |
Request Formats
application/json, text/json
Sample:
[ { "EmployeeID": 1, "UTCTrackingTimeStamp": "2025-06-27T12:34:36.912Z", "GPSLat": 3.0, "GPSLong": 4.0, "GPSAddress": "sample string 5", "Velocity": 6.1, "IsGPSFineGrain": true, "IsDelivered": true, "DeviceID": "sample string 9", "DevicePowerPercent": 10 }, { "EmployeeID": 1, "UTCTrackingTimeStamp": "2025-06-27T12:34:36.912Z", "GPSLat": 3.0, "GPSLong": 4.0, "GPSAddress": "sample string 5", "Velocity": 6.1, "IsGPSFineGrain": true, "IsDelivered": true, "DeviceID": "sample string 9", "DevicePowerPercent": 10 } ]
application/xml, text/xml
Sample:
<ArrayOfEmployeeTrackingModel.TrackingInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.OnTheGo.Models"> <EmployeeTrackingModel.TrackingInfo> <DeviceID>sample string 9</DeviceID> <DevicePowerPercent>10</DevicePowerPercent> <EmployeeID>1</EmployeeID> <GPSAddress>sample string 5</GPSAddress> <GPSLat>3</GPSLat> <GPSLong>4</GPSLong> <IsDelivered>true</IsDelivered> <IsGPSFineGrain>true</IsGPSFineGrain> <UTCTrackingTimeStamp>2025-06-27T12:34:36.9129124+00:00</UTCTrackingTimeStamp> <Velocity>6.1</Velocity> </EmployeeTrackingModel.TrackingInfo> <EmployeeTrackingModel.TrackingInfo> <DeviceID>sample string 9</DeviceID> <DevicePowerPercent>10</DevicePowerPercent> <EmployeeID>1</EmployeeID> <GPSAddress>sample string 5</GPSAddress> <GPSLat>3</GPSLat> <GPSLong>4</GPSLong> <IsDelivered>true</IsDelivered> <IsGPSFineGrain>true</IsGPSFineGrain> <UTCTrackingTimeStamp>2025-06-27T12:34:36.9129124+00:00</UTCTrackingTimeStamp> <Velocity>6.1</Velocity> </EmployeeTrackingModel.TrackingInfo> </ArrayOfEmployeeTrackingModel.TrackingInfo>
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.