Skip to main content
Omnitracs Knowledge Base

DriverIdentifier

Driver name information is implemented in the DriverIdentifier object. A DriverIdentifier object provides all of the information that is typically used to identify a Driver. The attributes of a DriverIdentifier object are:

 

Attribute

 

 

Description

 

id

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

loginName

A string of maximum length 30 containing the name the name the driver sees on the mobile unit after a successful login. It is the name that appears within the QTRACS and Performance Monitoring applications. During an inspection, the DOT officer uses the driver login name to verify that the HOS records being viewed are for the driver being inspected.

firstName

A string of maximum length 35 containing the first name of the driver.

lastName

A string of maximum length 35 containing the last name of the driver.

alias

A string of maximum length 30 containing the alias of the driver. This field is optional.

WSDL Definition

Here is how the DriverIdentifier object is defined within the WSDL:

<complexType name="DriverIdentifier">

  <sequence>

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

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

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

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

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

  </sequence>

</complexType>

 

Sample XML

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

<DriverIdentifier>

   <id>AAAA123A</id>

   <loginName>TED K CORNWALLA</loginName>

   <firstName>Ted</firstName>

   <lastName>Cornwalla</lastName>

   <alias>Big Joe</alias>

</DriverIdentifier>

  • Was this article helpful?