LegacyTelogisServiceDeleteDriver Method |
Print this page
Remove the specified Driver from Verizon Connect Fleet. Note: Before you delete a driver (or a sub-user associated with a driver) from Fleet, it is important that six months of ELD reports for the driver or sub-user are downloaded. This includes drivers and sub-users who no longer work for the organization. Once you delete a driver or sub-user, this action cannot be reverted, and reports for that driver or sub-user can no longer be generated.
Namespace: Telogis.API Syntax public void DeleteDriver(
long id
)
Public Sub DeleteDriver (
id As Long
)
Parameters
- id
- Type: SystemInt64
The ID of the
Driver
to delete.
Examples
Property fname = new Property("FirstName", "Joe");
Property lname = new Property("LastName", "Bloggs");
...
Property[] d_props = new Property[] { fname, lname, ... };
long driverId = myService.CreateDriver("Electrician", 2609515, 675726, d_props);
...
myService.DeleteDriver(driverId);
See Also