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
addContact
Add new Contact to Address Book.
The Address Book contains information about all your business associates, such as customers, suppliers, and
service providers. The information you enter in your Address Book can be used on multiple other screens for
dispatches, messages, data trackers, and reports.
addContactRequest
Request to add Contact.
Object Fields
| Name | Type | Required | Desciption |
| wsAdmin | TdxAdmin | Yes | Admin Credentials |
| contact | TdxContact | Yes | Contact info |
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:addContact soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <wsAdmin href="#id0"/> <contact href="#id1"/> </ns1:addContact> <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">1251426385099@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:TdxContact" xmlns:ns3="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <address href="#id2"/> <companyName xsi:type="xsd:string">companyName</companyName> <title xsi:type="xsd:string">title</title> <firstName xsi:type="xsd:string">firstName</firstName> <lastName xsi:type="xsd:string">lastName</lastName> <email xsi:type="xsd:string">my@yahoo.com</email> <url xsi:type="xsd:string">http://www.telenav.com</url> <customerNumber xsi:type="xsd:string">customerNumber</customerNumber> <faxNumber xsi:type="xsd:string">12012132</faxNumber> <phoneNumber xsi:type="xsd:string">100000000</phoneNumber> </multiRef> <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns4:TdxAddress" xmlns:ns4="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <lat xsi:type="xsd:double" xsi:nil="true"/> <lon xsi:type="xsd:double" xsi:nil="true"/> <street xsi:type="xsd:string">1130 Kifer Rd</street> <city xsi:type="xsd:string">Sunnyvale</city> <state xsi:type="xsd:string">CA</state> <zipCode xsi:type="xsd:string">94086</zipCode> <country xsi:type="xsd:string">America</country> <layerId xsi:type="xsd:long" xsi:nil="true"/> </multiRef> </soapenv:Body> </soapenv:Envelope>
addContactResponse
Contact ID.
Object Fields
| Name | Type | Required | Description |
| errorStatus | long | Yes | Contact ID |
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:addContactResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <errorStatus xsi:type="xsd:long">625520</errorStatus> </ns1:addContactResponse> </soapenv:Body> </soapenv:Envelope>