Skip to main content
Omnitracs Knowledge Base

Driver->GetDriversInGroup

GetDriversInGroup (Driver Function)

Returns the driver IDs of the drivers in the specified group.

XML Request

The GetDriversInGroup function takes the following input parameter:

Parameter Type Description
Group string The name of the group whose drivers should be returned
  
<soap:Body>  
  <GetDriversInGroup xmlns="http://www.qualcomm.com">  
     <request>  
       <Group>string</Group>  
     </request>  
   </GetDriversInGroup>  
</soap:Body>  

XML Response

The XML response will have a <GetDriversInGroupResults> tag that contains a list of driver IDs.

  
<soap:Body>  
  <GetDriversInGroupResponse xmlns="http://www.qualcomm.com">  
     <GetDriversInGroupResult>  
       <DriverIds>  
         <string>string</string>  
         <string>string</string>  
       </DriverIds>  
     </GetDriversInGroupResult>  
   </GetDriversInGroupResponse>  
</soap:Body>  
  • Was this article helpful?