Skip to main content
Omnitracs Knowledge Base

Change Driver Login Password

changeDriverLogin

Change a driver's global login password.

void changeDriverLogin(String driverId, String driverLogin) throws WSException

  • driverId: A string containing the identifier of the driver to be changed.
  • driverLogin: A string containing the login password entered by the driver on the mobile device.  Driver login passwords are alphanumeric strings with a maximum length 8.

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 QTRACS
- Can set up drivers
OR
- Can use Performance Monitoring
- Can maintain vehicles and drivers

- Can see drivers

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

Sample XML Request

Only the SOAP body is shown. To see a sample SOAP Envelope and Header, click here.

<soap:Body>

   <changeDriverLogin>

      <driverId>JADAMS</driverId>

      <driverLogin>ABC123</driverLogin>

   </changeDriverLogin>

</soap:Body>

Sample XML Response

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

<soapenv:Body>

   <changeDriverLoginResponse/>

</soapenv:Body>

Exceptions

001 Unknown Error.
002 Required field not specified.
003 Company not authorized for integration.
004 User is not authorized.
005 Driver ID invalid.
006 Driver Login Password invalid.
007 Driver is pending deletion.

  • Was this article helpful?