SearchResults

Represents the results of searching for entities hosted by one or more MiX Telematics systems.

Fields

Organisations
The organisations which match the search criteria.
Sites
The sites which match the search criteria.
Devices
The devices which match the search criteria.
Vehicles
The vehicles which match the search criteria.
Drivers
The drivers which match the search criteria.
Locations
The locations which match the search criteria.

Note: Fields which are not available will be omitted.

Examples

JSON body:

{"Devices":[],
"Vehicles":[{"SystemType":"XDrive","VehicleId":"df8c7fa2-c800-48d7-a67c-ff0b694a3d04","RegistrationNumber":"","Description":"Fred's Car","InstalledDeviceType":"XDrive","InstalledDeviceId":"49cd7ca3-7b72-4cd9-ad98-b93d39d611d0"},{"SystemType":"XDrive","VehicleId":"1186b7b8-2e4a-491e-84b5-4031f5d452fc","RegistrationNumber":"","Description":"Fred's Truck","InstalledDeviceType":"XDrive","InstalledDeviceId":"3d94c43b-3e2e-4d44-ac7a-a1ead9509443"}],
"Drivers":[{"SystemType":"XDrive","DriverId":"47914ad5-cb80-4e8c-bb43-a422c2568cde","Name":"Fred","DeviceDriverId":"1536"}]}

XML body:

<SearchResults xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Vehicles>
	<Vehicle SystemType="XDrive" VehicleId="df8c7fa2-c800-48d7-a67c-ff0b694a3d04">
		<Description>Fred's Car</Description>
		<InstalledDeviceType>XDrive</InstalledDeviceType>
		<InstalledDeviceId>49cd7ca3-7b72-4cd9-ad98-b93d39d611d0</InstalledDeviceId>
	</Vehicle>
	<Vehicle SystemType="XDrive" VehicleId="1186b7b8-2e4a-491e-84b5-4031f5d452fc">
		<Description>Fred's Truck</Description>
		<InstalledDeviceType>XDrive</InstalledDeviceType>
		<InstalledDeviceId>3d94c43b-3e2e-4d44-ac7a-a1ead9509443</InstalledDeviceId>
	</Vehicle>
</Vehicles>
<Drivers>
	<Driver SystemType="XDrive" DriverId="47914ad5-cb80-4e8c-bb43-a422c2568cde">
		<Name>Fred</Name>
		<DeviceDriverId>1536</DeviceDriverId>
	</Driver>
</Drivers>
</SearchResults>