Skip to main content
Omnitracs Knowledge Base

Set Tethered Reefer Temp Monitoring

setTetheredReeferTempMonitoring

The setTetheredReeferTempMonitoring web service sets the temperature monitoring parameters for a given trailer.

void setTetheredReeferTempMonitoring(AssetIdentifier trailer, TetheredReeferMonitoring tetheredReeferMonitoring) throws WSException

  • trailer: An AssetIdentifier object that contains the identifier of the trailer to set the temperature monitoring for.
  • tetheredReeferMonitoring: A TetheredReeferMonitoring object containing the temperature monitoring information.

Authorization Requirements

The credentials supplied with this method call (as specified in the accompanying WS-Security header) must be authorized to the following application(s) and their associated role-based permissions.

Required Application Licenses
- Remote Integration

Required User Permissions
- Can use Trailer Tracks
- Can maintain trailers

Customer integrators are authorized to their own company's data only.

Exceptions

001 Unknown Error.
003 Company not authorized for integration.
004 User not authorized.
005 Trailer SCAC is invalid.
006 Trailer ID is invalid.
007 A tethered reefer trailer with the specified SCAC/ID does not exist.
008 Target temperature is invalid.
009 Temperature tolerance is invalid.

Sample setTetheredReeferTempMonitoring Request

Only the SOAP body is shown. To see a sample SOAP Envelope and Header, view the Web Service Security page.

<soapenv:Body>

     <setTetheredReeferTempMonitoring>

         <trailer xmlns="">

           <id>REEFER</id>

           <scac>CSDI</scac>

         </trailer>

         <TetheredReeferMonitoring>

           <active>true</active>

           <targetTemp>30.0</targetTemp>

           <tempTolerance>3.5</tempTolerance>

         </TetheredReeferMonitoring>

      </setTetheredReeferTempMonitoring>

</soapenv:Body>

Sample setTetheredReeferTempMonitoring Response

An empty response conveys success. If there was an error, an exception would have been thrown.

<soapenv:Body>

      <setTetheredReeferTempMonitoringResponse/>

</soapenv:Body>

  • Was this article helpful?