Skip to main content
Omnitracs Knowledge Base

Asset Identification 2

Asset Identification 2 objects are implemented as the AssetIdentification2 class. An AssetIdentification2 contains information that uniquely identifies an asset (vehicle or trailer) within the system. The attributes of an AssetIdentification2 are:

 

Attribute

 

 

Description

 

scac

A string of maximum length 4 that contains the Standard Carrier Alpha Code (SCAC) for the carrier that owns this vehicle or trailer. SCACs are assigned by the National Motor Freight Traffic Association (NMFTA). SCACs are fully implemented for trailers.

(warning)
SCACs are not currently supported for vehicles in QTRACS/Portal or Performance Monitoring. QTRACS and Performance Monitoring web services will return this value as blanks. This value should be set to all blanks when using the AssetIdentifier as an input parameter to QTRACS and Performance Monitoring web services.

id

A string of maximum length 10 that contains the identifier of the vehicle or trailer. This is usually set to the value of the tractor or trailer decal. Along with the SCAC, this value serves to uniquely define the vehicle or trailer across all companies in the Services Portal system.

ua

The unit address of the mobile device that is installed in this vehicle.

name

A string containing descriptive information about the vehicle.

VIN

A string of exactly 17 characters containing the VIN of the vehicle. Characters I, O, Q are not permitted.

licensePlate

LicensePlate object containing the number and jurisdiction of the license plate of the vehicle.

WSDL Definition

Below is how the Asset Identifier object is defined in the WSDL

<complexType name="AssetIdentification2">

    <sequence>

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

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

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

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

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

        <element name="licensePlate" nillable="true" type="tns3:LicensePlate"/>

    </sequence>

</complexType>

Sample XML

Here is some sample XML that shows what the Asset Identifier object will look like in XML.

<AssetIdentification2>

   <id>ATOM92426</id>

   <scac>C131</scac>

   <ua>0108000555</ua>

   <name>An asset description</name>

   <VIN>1G6CD5183H4333111</VIN>

   <licensePlate>

        <number>FHN3423</number>

        <jurisdiction>US-PA</jurisdiction>

   </licensePlate>

</AssetIdentification2>

  • Was this article helpful?