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
addSearchableItemList
Create drop-down values for one Wireless Form Field.
addSearchableItemListRequest
Request to create Field drop-down values.
Object Fields
| Name | Type | Required | Description |
| wsAdmin | TdxAdmin | Yes | Admin Credentials |
| itemList | TdxItemList | Yes | List of drop-down values to be added |
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:addSearchableItemList soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <wsAdmin href="#id0"/> <itemList href="#id1"/> </ns1:addSearchableItemList> <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:TdxAdmin" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://www.telenavtrack.net/schema"> <email xsi:type="xsd:string">1251451955716@telenav.com</email> <password xsi:type="xsd:string">password</password> </multiRef> <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns3:TdxItemList" xmlns:ns3="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <itemListId xsi:type="xsd:long" xsi:nil="true"/> <creator xsi:type="xsd:string">peter</creator> <createTime xsi:type="xsd:long" xsi:nil="true"/> <name xsi:type="xsd:string">junit1251451957247</name> <usedByForm xsi:type="xsd:boolean" xsi:nil="true"/> <items href="#id2"/> <description xsi:type="xsd:string">unit test</description> </multiRef> <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns4:TdxItem" xmlns:ns4="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <itemId xsi:type="xsd:long" xsi:nil="true"/> <itemListId xsi:type="xsd:long" xsi:nil="true"/> <itemKey xsi:type="xsd:string">parkingCost</itemKey> <searchString xsi:type="xsd:string">Parking (USD)</searchString> <description xsi:type="xsd:string">Parking (do not include citations and gas)</description> </multiRef> </soapenv:Body> </soapenv:Envelope>
addSearchableItemListResponse
ID of created list of drop-down values.
Object Fields
| Name | Type | Required | Description |
| itemListId | long | Yes | ID of created Drop-Down List |
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:addSearchableItemListResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <itemListId xsi:type="xsd:long">8090</itemListId> </ns1:addSearchableItemListResponse> </soapenv:Body> </soapenv:Envelope>