POST api/GPSTracking
Request Information
URI Parameters
None.
Body Parameters
TrackingData| Name | Description | Type | Additional information |
|---|---|---|---|
| Stored | date |
None. |
|
| TObjectID | string |
None. |
|
| xLong | decimal number |
None. |
|
| yLat | decimal number |
None. |
|
| Speed | decimal number |
None. |
|
| Odometer | decimal number |
None. |
|
| Course | decimal number |
None. |
|
| Location | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Stored": "2026-02-09T11:20:20.8958499-06:00",
"TObjectID": "sample string 2",
"xLong": 3.0,
"yLat": 4.0,
"Speed": 5.0,
"Odometer": 6.0,
"Course": 7.0,
"Location": "sample string 8"
}
application/xml, text/xml
Sample:
<TrackingData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalProviders.Controllers"> <Course>7</Course> <Location>sample string 8</Location> <Odometer>6</Odometer> <Speed>5</Speed> <Stored>2026-02-09T11:20:20.8958499-06:00</Stored> <TObjectID>sample string 2</TObjectID> <xLong>3</xLong> <yLat>4</yLat> </TrackingData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SimpleResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | boolean |
None. |
|
| Mensaje | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": true,
"Mensaje": "sample string 2"
}
application/xml, text/xml
Sample:
<SimpleResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalProviders.Models"> <Error>true</Error> <Mensaje>sample string 2</Mensaje> </SimpleResponse>