getStopReport
Get Stop Report.
The Stop Report summarizes total stop time and shows the average and longest stop times. This report is convenient for pointing out unscheduled breaks and other unauthorized activities.
getStopReportRequest
Request to get stops.
Object Fields
NameTypeRequiredDescription
wsAdminTdxAdminYesAdmin Credentials
ptnstringYesPhone Number
stopTimeintYesLength of Stop in minutes. Should be between 2 and 99 minutes.
stopRadiusintYesRadius of Stop in meters. Default is 200m
startTimeintYesFrom Time (milliseconds from UTC 1970/01/01)
endTimeintYesTo Time (milliseconds from UTC 1970/01/01)


XML Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <ns1:getStopReport soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns">
   <wsAdmin href="#id0"/>
   <ptn xsi:type="xsd:string">1251426200197</ptn>
   <stopTime href="#id1"/>
   <stopRadius href="#id2"/>
   <startTime href="#id3"/>
   <endTime href="#id4"/>
  </ns1:getStopReport>
  <multiRef id="id4" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1251426200400</multiRef>
  <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">2</multiRef>
  <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:TdxAdmin" xmlns:ns2="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
   <email xsi:type="xsd:string">1251426199510@telenav.com</email>
   <password xsi:type="xsd:string">password</password>
  </multiRef>
  <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1</multiRef>
  <multiRef id="id3" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1251339800400</multiRef>
 </soapenv:Body>
</soapenv:Envelope>
				



getStopReportResponse
Stops of mobile device. Every stop is a pair of GPS readings - one at the moment of starting Stop and one at the moment of finishing Stop.

Object Fields
NameTypeRequiredDescription
getStopReportReturnTdxGpsPairArrayYesPair of GPS locations.


XML Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <ns1:getStopReportResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns">
   <getStopReportReturn soapenc:arrayType="ns2:TdxGPSPair[1]" xsi:type="soapenc:Array" xmlns:ns2="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <getStopReportReturn xsi:type="ns2:TdxGPSPair">
     <startGPS xsi:type="ns2:TdxGps">
      <ptn xsi:type="xsd:string">5550000014</ptn>
      <time xsi:type="xsd:long">1254961411000</time>
      <heading xsi:type="xsd:double">0.0</heading>
      <speed xsi:type="xsd:double">0.0</speed>
      <mileage xsi:type="xsd:double">0.0</mileage>
      <address xsi:type="ns2:TdxAddress">
       <lat xsi:type="xsd:double">37.3731</lat>
       <lon xsi:type="xsd:double">-121.999</lon>
       <street xsi:type="xsd:string">Near 1142 KIFER RD and SEMICONDUCTOR DR</street>
       <city xsi:type="xsd:string">SANTA CLARA</city>
       <state xsi:type="xsd:string">CA</state>
       <zipCode xsi:type="xsd:string">94086</zipCode>
       <country xsi:type="xsd:string">US</country>
       <layerId xsi:type="xsd:long" xsi:nil="true"/>
      </address>
     </startGPS>
     <endGPS xsi:type="ns2:TdxGps">
      <ptn xsi:type="xsd:string">5550000014</ptn>
      <time xsi:type="xsd:long">1254963472000</time>
      <heading xsi:type="xsd:double">0.0</heading>
      <speed xsi:type="xsd:double">0.0</speed>
      <mileage xsi:type="xsd:double">0.0</mileage>
      <address xsi:type="ns2:TdxAddress">
       <lat xsi:type="xsd:double">37.37319</lat>
       <lon xsi:type="xsd:double">-121.999</lon>
       <street xsi:type="xsd:string">Near 1142 KIFER RD and SEMICONDUCTOR DR</street>
       <city xsi:type="xsd:string">SANTA CLARA</city>
       <state xsi:type="xsd:string">CA</state>
       <zipCode xsi:type="xsd:string">94086</zipCode>
       <country xsi:type="xsd:string">US</country>
       <layerId xsi:type="xsd:long" xsi:nil="true"/>
      </address>
     </endGPS>
    </getStopReportReturn>
   </getStopReportReturn>
  </ns1:getStopReportResponse>
 </soapenv:Body>
</soapenv:Envelope>