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
getJobTemplates
Get all Job Templates for the Admin's Company. Job Templates are objects used for creating new Jobs.
Determine what form fields or Address Book fields (such as company name, address, and device number) should
be attached to a job and relayed to devices in the field. For example, job attributes could describe the types of trucks
required for the job, special equipment needed, an authorization code, or an associated job number. The
employees can then fill out these specific form fields with the job and send the information back to the website. The
job attributes will also be listed on the Job Dispatch Board.
getJobTemplatesRequest
Request to get Job Templates for the Admin's company.
Object Fields
| Name | Type | Required | Description |
| wsAdmin | TdxAdmin | Yes | Admin Credentials |
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:getJobTemplates soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <wsAdmin href="#id0"/> </ns1:getJobTemplates> <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">1251425220596@telenav.com</email> <password xsi:type="xsd:string">password</password> </multiRef> </soapenv:Body> </soapenv:Envelope>
getJobTemplatesResponse
Job Templates.
Object Fields
| Name | Type | Required |
| getJobTemplatesReturn | NameValuePairArray | Yes |
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:getJobTemplatesResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns"> <getJobTemplatesReturn soapenc:arrayType="ns2:NameValuePair[1]" xsi:type="soapenc:Array" xmlns:ns2="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <getJobTemplatesReturn xsi:type="ns2:NameValuePair"> <name xsi:type="xsd:string">Test Job</name> <value xsi:type="xsd:string">73370</value> </getJobTemplatesReturn> </getJobTemplatesReturn> </ns1:getJobTemplatesResponse> </soapenv:Body> </soapenv:Envelope>