GET api/v4/servicestatuslite/{userID}/{token}/{serviceID}/{groupID}
Get a list of lite service statuses by service id or group id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userID |
The userid being used for authentication |
unsigned integer |
Required |
| token |
The token being used for authentication |
string |
Required |
| serviceID |
The service id being searched for. Service Id takes priority over group id |
unsigned integer |
Default value is 0 |
| groupID |
The group id being used in search. Service Id takes priority over group id |
unsigned integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
A list of lite service statuses
Collection of ServiceStatusLiteResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceID |
The service id of the vehicle |
unsigned integer |
None. |
| vehicleRegistration |
The vehicles registration |
string |
None. |
| vehicleIcon |
The vehicles icon on the web site |
string |
None. |
| geoStreet |
The street the vehicle is currently located in |
string |
None. |
| geoTown |
The town the vehicle is currently located in |
string |
None. |
| geoCountry |
The country the vehicle is currently located in |
string |
None. |
| geoPostCode |
The postcode the vehicle is currently located in |
string |
None. |
| gpsLatitude |
The vehicle's current latitude |
decimal number |
None. |
| gpsLongitude |
The vehicle's current longitude |
decimal number |
None. |
| gpsTime |
The last update time of the vehicle |
date |
None. |
| serviceFlags |
ServiceDataFlags flags indicating the state of a vehicles inputs |
ServiceDataFlags |
None. |
| VIN |
The vehicle identification number |
string |
None. |
| USDOT |
The USDOT value |
string |
None. |
| Voltage |
The last voltage |
decimal number |
None. |
| Status |
The status |
string |
None. |
| StatusUpdateDate |
When the status was changed |
date |
None. |
Response Formats
application/json, text/json
[
{
"serviceID": 1,
"vehicleRegistration": "sample string 2",
"vehicleIcon": "sample string 3",
"geoStreet": "sample string 4",
"geoTown": "sample string 5",
"geoCountry": "sample string 6",
"geoPostCode": "sample string 7",
"gpsLatitude": 8.1,
"gpsLongitude": 9.1,
"gpsTime": "2025-11-04T14:26:02.6826203+00:00",
"serviceFlags": 1,
"VIN": "sample string 11",
"USDOT": "sample string 12",
"Voltage": 13.1,
"Status": "sample string 15",
"StatusUpdateDate": "2025-11-04T14:26:02.6826203+00:00"
},
{
"serviceID": 1,
"vehicleRegistration": "sample string 2",
"vehicleIcon": "sample string 3",
"geoStreet": "sample string 4",
"geoTown": "sample string 5",
"geoCountry": "sample string 6",
"geoPostCode": "sample string 7",
"gpsLatitude": 8.1,
"gpsLongitude": 9.1,
"gpsTime": "2025-11-04T14:26:02.6826203+00:00",
"serviceFlags": 1,
"VIN": "sample string 11",
"USDOT": "sample string 12",
"Voltage": 13.1,
"Status": "sample string 15",
"StatusUpdateDate": "2025-11-04T14:26:02.6826203+00:00"
}
]
application/xml, text/xml
<ArrayOfServiceStatusLiteResponseModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ServiceStatusLiteResponseModel>
<serviceID>1</serviceID>
<vehicleRegistration>sample string 2</vehicleRegistration>
<vehicleIcon>sample string 3</vehicleIcon>
<geoStreet>sample string 4</geoStreet>
<geoTown>sample string 5</geoTown>
<geoCountry>sample string 6</geoCountry>
<geoPostCode>sample string 7</geoPostCode>
<gpsLatitude>8.1</gpsLatitude>
<gpsLongitude>9.1</gpsLongitude>
<gpsTime>2025-11-04T14:26:02.6826203+00:00</gpsTime>
<serviceFlags>Ignition</serviceFlags>
<VIN>sample string 11</VIN>
<USDOT>sample string 12</USDOT>
<Voltage>13.1</Voltage>
<StatusInt>14</StatusInt>
<Status>sample string 15</Status>
<StatusUpdateDate>2025-11-04T14:26:02.6826203+00:00</StatusUpdateDate>
</ServiceStatusLiteResponseModel>
<ServiceStatusLiteResponseModel>
<serviceID>1</serviceID>
<vehicleRegistration>sample string 2</vehicleRegistration>
<vehicleIcon>sample string 3</vehicleIcon>
<geoStreet>sample string 4</geoStreet>
<geoTown>sample string 5</geoTown>
<geoCountry>sample string 6</geoCountry>
<geoPostCode>sample string 7</geoPostCode>
<gpsLatitude>8.1</gpsLatitude>
<gpsLongitude>9.1</gpsLongitude>
<gpsTime>2025-11-04T14:26:02.6826203+00:00</gpsTime>
<serviceFlags>Ignition</serviceFlags>
<VIN>sample string 11</VIN>
<USDOT>sample string 12</USDOT>
<Voltage>13.1</Voltage>
<StatusInt>14</StatusInt>
<Status>sample string 15</Status>
<StatusUpdateDate>2025-11-04T14:26:02.6826203+00:00</StatusUpdateDate>
</ServiceStatusLiteResponseModel>
</ArrayOfServiceStatusLiteResponseModel>