Skip to main content
Omnitracs Knowledge Base

Driver

Information about a driver's definition is implemented in the Driver object.  The attributes of the Driver object are:

 

Attribute

 

 

Description

 

driverId

A string of maximum length 10 containing the unique identifier of the driver.

driverName

A string of maximum length 30 containing the name of the driver.

globalLoginPassword

A string of maximum length 8 containing the global login password of the driver.

stracsLoginPassword

An int containing the stracs login password of the driver.

fleetId

A string of maximum length 32 containing the fleet id of the driver.

subfleetId

A string of maximum length 32 containing the sub-fleet id of the driver. 

WSDL Definition

Here is how the Driver object is defined within the WSDL

<complexType name="Driver">

   <sequence>

      <element name="driverId" nillable="true" type="xsd:string"/>

      <element name="driverName" nillable="true" type="xsd:string"/>

      <element name="fleetId" nillable="true" type="xsd:string"/>

      <element name="globalLoginPassword" nillable="true" type="xsd:string"/>

      <element name="stracsLoginPassword" type="xsd:int"/>

      <element name="subfleetId" nillable="true" type="xsd:string"/>

   </sequence>

</complexType>

 

Sample XML

Here is a sample showing what the Driver object would look like in XML

<Driver>

   <driverId>123467890</driverId>

   <driverName>Jim</driverName>

   <fleetId>Cornerstone</fleetId>

   <globalLoginPassword>XYZ</globalLoginPassword>

   <stracsLoginPassword>1100</stracsLoginPassword>

   <subfleetId>CSDI</subfleetId>

</Driver>

  • Was this article helpful?