Skip to main content
Omnitracs Knowledge Base

Asset Identifier

Asset Identifiers are implemented as the AssetIdentifier class. An AssetIdentifier uniquely identifies an asset (vehicle or trailer) within the system. The attributes of an AssetIdentifier 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.

 

WSDL Definition

 

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

<complexType name="AssetIdentifier">

   <sequence>

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

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

   </sequence>

</complexType>

 

Sample XML

 

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

<AssetIdentifier>

   <id>ATOM92426</id>

   <scac>C131</scac>

</AssetIdentifier>

  • Was this article helpful?