Skip to main content
Omnitracs Knowledge Base

Mileage Threshold Monitoring

Information about Mileage Threshold Monitoring is implemented in the MileageThresholdMonitoring object.  The attributes of the MileageThresholdMonitoring object are:

 

Attribute

 

 

Description

 

active

A boolean value indicating if threshold monitoring is activated (true) or deactivated (false).
If set to false when setting threshold monitoring, all other values will be ignored.

threshold

A double that contains value of the threshold to monitor.  U.S. and Imperial valid range is 0 - 2,668,768.9 miles. Metric valid range is 0 - 4,294,967.2 km. Only values with one or fewer decimal places are accepted or returned.

notification

An array of Email objects containing the addresses to be notified when a temperature monitoring event occurs.

WSDL Definition

Here is how the Mileage Threshold Monitoring object is defined within the WSDL

<complexType name="MileageThresholdMonitoring ">

  <sequence>

    <element name="active" type="xsd:boolean" />

    <element name="threshold" type="xsd:double" />

    <element name="notification" nillable="true" type="impl:ArrayOf_tns2_nillable_Email" />

  </sequence>

</complexType>






 

Sample XML

Here is some sample XML that shows what the Trailer Information object will look like in XML

<MileageThresholdMonitoring >

  <active>true</active>

  <threshold>100000</threshold>

  <notification>

    <Email>

        <address>romanowski@volpico.com</address>

    </Email>

    <Email>

        <address>spalmer@volpico.com</address>

    </Email>

  </notification>

</MileageThresholdMonitoring >

  • Was this article helpful?