Monitor Report Server

<back to all web services

FakeTrackRequest

The following routes are available for this service:
POST, GET, PUT, DELETE/FakeTrack
FakeTrackRequest Parameters:
NameParameterData TypeRequiredDescription
OffsetbodyintNo
DataGPS Parameters:
NameParameterData TypeRequiredDescription
ObjectIdformintNo
LatformdoubleNo
LonformdoubleNo
Heightformdouble?No
Mileageformdouble?No
Speedformshort?No
Directionformshort?No
Satellitesformshort?No
DeviceTimeformDateTimeNo
ServerTimeformDateTimeNo
ValidformboolNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /FakeTrack HTTP/1.1 
Host: api.v3.monitorsystem.ru 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<FakeTrackRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TS.WebApi.Server.Services">
  <Offset>0</Offset>
</FakeTrackRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<DataGPS xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DeviceTime>0001-01-01T00:00:00</DeviceTime>
  <Direction>0</Direction>
  <Height>0</Height>
  <Lat>0</Lat>
  <Lon>0</Lon>
  <Mileage>0</Mileage>
  <ObjectId>0</ObjectId>
  <Satellites>0</Satellites>
  <ServerTime>0001-01-01T00:00:00</ServerTime>
  <Speed>0</Speed>
  <Valid>false</Valid>
</DataGPS>