GPSFixReport v1
This report allows you to review regular GPS fixes obtained through TrackIt Android and identify coverage gaps.
Parameters
GPSFixParams
Parameter |
Description |
Type |
Required |
Notes |
---|---|---|---|---|
The day(s) desired for report data querying. |
Date Range |
Required |
|
|
The identification numbers for the employeeUser accounts for drivers, dispatchers, and other staff to perform varying functions in TrackIt.(s) queried. |
Integer |
|
|
|
The identifying numbers for the vehicleAll machines used as a means of production on a construction site or at a batch plant.(s) queried. |
Integer |
|
|
|
The employee or vehicle type ID depending on which one the query is focused. |
Integer |
|
|

<soapenv:Envelopexmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://v1.report.services.trakitgps.com/">
<soapenv:Header/>
<soapenv:Body>
<v1:GPSFixReport>
<!--Optional:-->
<webkey>{webkey}</webkey>
<!--Optional:-->
<GPSFixParams>
<dateRange>
<startDate>
<year>{year}</year>
<month>{month}</month>
<day>{day}</day>
<hour>{hour}</hour>
<minute>{minute}</minute>
<second>{second}</second>
<!--Optional:-->
<timeZone>{time zone}</timeZone>
</startDate>
<endDate>
<year>{year}</year>
<month>{month}</month>
<day>{day}</day>
<hour>{hour}</hour>
<minute>{minute}</minute>
<second>{second}</second>
<!--Optional:-->
<timeZone>{time zone}</timeZone>
</endDate>
</dateRange>
<!--Optional:-->
<employeeNum>{employee number}</employeeNum>
<!--Optional:-->
<vehicleNum>{vehicle number}</vehicleNum>
<!--Optional:-->
<typeID>{type ID number}</typeID>
</GPSFixParams>
</v1:GPSFixReport>
</soapenv:Body>
</soapenv:Envelope>
Returns
GPSFixReportResponse
Parameter | Description | Notes |
---|---|---|
The equipmentAll machines used as a means of production on a construction site or at a batch plant.'s identification number. |
||
The employee's identification number. |
||
Identification number assigned to the device in the database. |
Not visible in the TrackIt Web Console user interface. | |
The statusThe specific activity or task a driver is currently engaged in, typically as part of a process called a "status loop."'s corresponding identification number. |
||
The latitude (north/south) and longitude (west/east) coordinates for the GPS fixCoordinates for a vehicle's location. These are fetched by TrackIt at regular intervals to map equipment routes over the course of a day. received. |
||
The timestamp associated with when the GPS fix was obtained by TrackIt. |
||
The speed of the vehicle based on GPS fix data calculations. |
||
The direction the vehicle is recorded to be traveling. |
Indicated by degrees from 0-360. |

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:GPSFixReportResponse xmlns:ns2="http://v1.report.services.trakitgps.com/">
<return>
<vehicleNum>{vehicle number}</vehicleNum>
<employeeNum>{employee number}</employeeNum>
<statusNum>{status number}</statusNum>
<coordinates>
<latitude>{latitude}</latitude>
<longitude>{longitude}</longitude>
</coordinates>
<timeOfFix>
<year>{year}</year>
<month>{month}</month>
<day>{day}</day>
<hour>{hour}</hour>
<minute>{minute}</minute>
<second>{second}</second>
<timeZone>{time zone}</timeZone>
</timeOfFix>
<speed>{speed of vehicle}</speed>
</return>
<return>
<vehicleNum>{vehicle number}</vehicleNum>
<employeeNum>{employee number}</employeeNum>
<statusNum>{status number}</statusNum>
<coordinates>
<latitude>{latitude}</latitude>
<longitude>{longitude}</longitude>
</coordinates>
<timeOfFix>
<year>{year}</year>
<month>{month}</month>
<day>{day}</day>
<hour>{hour}</hour>
<minute>{minute}</minute>
<second>{second}</second>
<timeZone>{time zone}</timeZone>
</timeOfFix>
<speed>{speed of vehicle}</speed>
</return>
</ns2:GPSFixReportResponse>
</S:Body>
</S:Envelope>