Web Services
- Devices
- getDevices
- Timecard
- getTimecardReport
- Distance
- fetchMileage
- getMileage
- Geofence
- setupCircleFence
- updateCircleFence
- fetchCircleFence
- deleteGeofence
- GeoFence Rule
- setupGeofenceRule
- updateGeofenceRule
- cancelGeofenceRule
- ETA
- estimateTravelTime
- Message
- dispatchMsg
- Job
- getJobTemplates
- dispatchAdvanceJob
- fetchAdvanceJob
- cancelJob
- fetchJobStatus
- getJobEvents
- GPS
- getGpses
- queryLatestGpsMeasurement
- Stop
- getStopReport
- Address Book
- addContact
- fetchAddress
- getClosestContact
- getClosestLandmark
- Event
- getEventDef
- getEvents
- getEventList
- Form
- addWirelessForm
- updateWirelessForm
- deleteWirelessForm
- fetchWirelessForms
- fetchWirelessFormsData
- Searchable Field
- addSearchableItemList
- fetchSearchableItemList
- updateSearchableItemList
- deleteSearchableItemList
- Data Tracker
- createDataTracker
- getDataTracker
- updateDataTracker
- deleteDataTracker
- Geo Code
- geocodeAddress
- validateAddress
- Time
- getLocalTime
getDevices
Get Mobile Devices.
Get information about mobile devices of your company registered on Telenav server.
getDevicesRequest
Get Devices request.
Object Fields
| Name | Type | Required | Description |
| wsAdmin | TdxAdmin | Yes | Admin Credentials |
| isDeleted | boolean | Yes | True to request deleted phones only. |
| skip | int | Yes | Skip several first phones (in case your company has too many phones to get them with one request). |
| limit | long | Yes | Return not more than this number of phones. Use zero to get all phones. |
XML Example:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:tns"> <soapenv:Header/> <soapenv:Body> <urn:getDevices soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <wsAdmin xsi:type="sch:TdxAdmin" xmlns:sch="http://www.telenavtrack.net/schema"> <email xsi:type="xsd:string">vladj@telenav.com</email> <password xsi:type="xsd:string">????????</password> </wsAdmin> <isDeleted xsi:type="xsd:boolean">false</isDeleted> <skip xsi:type="xsd:int">0</skip> <limit xsi:type="xsd:int">0</limit> </urn:getDevices> </soapenv:Body> </soapenv:Envelope>
getDevicesResponse
Get Devices response.
Object Fields
| Name | Type | Description |
| getDevicesReturn | Array of TdxDevice objects. | Mobile Devices. |
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:getDevicesResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <getDevicesReturn soapenc:arrayType="ns2:TdxDevice[1]" xsi:type="soapenc:Array" xmlns:ns2="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <getDevicesReturn xsi:type="ns2:TdxDevice"> <deviceName xsi:type="xsd:string">Vlad BB 8310</deviceName> <employeeId xsi:type="xsd:string" xsi:nil="true"/> <planType xsi:type="xsd:string">Premium</planType> <planTypeId xsi:type="xsd:long">3</planTypeId> <planName xsi:type="xsd:string">Premium(COU)</planName> <planCode xsi:type="xsd:string">tnt_cgl_cou</planCode> <ptn xsi:type="xsd:string">4085058616</ptn> <deviceModel xsi:type="xsd:string">BB8310</deviceModel> <clientVersion xsi:type="xsd:string">4.1</clientVersion> <clientVersionId xsi:type="xsd:int">65</clientVersionId> <carrier xsi:type="xsd:string">AT&T</carrier> <platform xsi:type="xsd:string">RIM</platform> <publicIp xsi:type="xsd:string">68.171.233.138</publicIp> <adminLookup xsi:type="xsd:string" xsi:nil="true"/> <loginSetup xsi:type="xsd:string">First time application starts</loginSetup> <loginSetupId xsi:type="xsd:int">0</loginSetupId> <groupName xsi:type="xsd:string">Sub group 1</groupName> <groupId xsi:type="xsd:long">175685</groupId> <timezoneId xsi:type="xsd:string">America/Anchorage</timezoneId> </getDevicesReturn> </getDevicesReturn> </ns1:getDevicesResponse> </soapenv:Body> </soapenv:Envelope>