POST apioauth/installations/{installationId}/telemetry
Get telemetry from a unit being installed
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| installationId | 
                         The installation id queried  | 
                    integer | 
                                 Required  | 
                
Body Parameters
InstallationTelemetryRequest
InstallationTelemetryRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| StartDate | 
                         The start date being queried  | 
                    date | 
                             None.  | 
                
| EndDate | 
                         The end date being queried  | 
                    date | 
                             None.  | 
                
Request Formats
application/json, text/json
{
  "StartDate": "2025-11-04T14:32:41.2115109+00:00",
  "EndDate": "2025-11-04T14:32:41.2115109+00:00"
}
        application/xml, text/xml
<InstallationTelemetryRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <StartDate>2025-11-04T14:32:41.2115109+00:00</StartDate> <EndDate>2025-11-04T14:32:41.2115109+00:00</EndDate> </InstallationTelemetryRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
MobileServiceTelemetryResponse
Collection of MobileServiceTelemetryResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| ServiceID | 
                         The service id which created the telemetry  | 
                    unsigned integer | 
                             None.  | 
                
| GPSOrientation | 
                         The GPS orientation in degrees  | 
                    decimal number | 
                             None.  | 
                
| GPSLatitude | 
                         The GPS latitude in degrees  | 
                    decimal number | 
                             None.  | 
                
| GPSLongitude | 
                         The GPS longitude in degrees  | 
                    decimal number | 
                             None.  | 
                
| GPSSpeed | 
                         The GPS speed in miles per hour  | 
                    decimal number | 
                             None.  | 
                
| GPSTime | 
                         The GPS time in UTC  | 
                    date | 
                             None.  | 
                
| RoadSpeed | 
                         The road speed in mph  | 
                    integer | 
                             None.  | 
                
| Street | 
                         The street where the service is located  | 
                    string | 
                             None.  | 
                
| Town | 
                         The town where the service is located  | 
                    string | 
                             None.  | 
                
| Postcode | 
                         The postcode where the service is located  | 
                    string | 
                             None.  | 
                
| Country | 
                         The country where the service is located  | 
                    string | 
                             None.  | 
                
| JourneyStatus | 
                         Indicates if the service is in a journey  | 
                    boolean | 
                             None.  | 
                
| IdleStatus | 
                         Indicates if the service is idling  | 
                    boolean | 
                             None.  | 
                
| MessageType | 
                         The message type  | 
                    event_t | 
                             None.  | 
                
| BatteryVoltage | 
                         The Battery Voltage  | 
                    decimal number | 
                             None.  | 
                
Response Formats
application/json, text/json
[
  {
    "ServiceID": 1,
    "GPSOrientation": 2.1,
    "GPSLatitude": 3.1,
    "GPSLongitude": 4.1,
    "GPSSpeed": 5.1,
    "GPSTime": "2025-11-04T14:32:41.2115109+00:00",
    "RoadSpeed": 7,
    "Street": "sample string 8",
    "Town": "sample string 9",
    "Postcode": "sample string 10",
    "Country": "sample string 11",
    "JourneyStatus": true,
    "IdleStatus": true,
    "MessageType": 0,
    "BatteryVoltage": 14.1
  },
  {
    "ServiceID": 1,
    "GPSOrientation": 2.1,
    "GPSLatitude": 3.1,
    "GPSLongitude": 4.1,
    "GPSSpeed": 5.1,
    "GPSTime": "2025-11-04T14:32:41.2115109+00:00",
    "RoadSpeed": 7,
    "Street": "sample string 8",
    "Town": "sample string 9",
    "Postcode": "sample string 10",
    "Country": "sample string 11",
    "JourneyStatus": true,
    "IdleStatus": true,
    "MessageType": 0,
    "BatteryVoltage": 14.1
  }
]
        application/xml, text/xml
<ArrayOfMobileServiceTelemetryResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MobileServiceTelemetryResponse>
    <ServiceID>1</ServiceID>
    <GPSOrientation>2.1</GPSOrientation>
    <GPSLatitude>3.1</GPSLatitude>
    <GPSLongitude>4.1</GPSLongitude>
    <GPSSpeed>5.1</GPSSpeed>
    <GPSTime>2025-11-04T14:32:41.2115109+00:00</GPSTime>
    <RoadSpeed>7</RoadSpeed>
    <Street>sample string 8</Street>
    <Town>sample string 9</Town>
    <Postcode>sample string 10</Postcode>
    <Country>sample string 11</Country>
    <JourneyStatus>true</JourneyStatus>
    <IdleStatus>true</IdleStatus>
    <MessageType>NO_EVENT</MessageType>
    <BatteryVoltage>14.1</BatteryVoltage>
  </MobileServiceTelemetryResponse>
  <MobileServiceTelemetryResponse>
    <ServiceID>1</ServiceID>
    <GPSOrientation>2.1</GPSOrientation>
    <GPSLatitude>3.1</GPSLatitude>
    <GPSLongitude>4.1</GPSLongitude>
    <GPSSpeed>5.1</GPSSpeed>
    <GPSTime>2025-11-04T14:32:41.2115109+00:00</GPSTime>
    <RoadSpeed>7</RoadSpeed>
    <Street>sample string 8</Street>
    <Town>sample string 9</Town>
    <Postcode>sample string 10</Postcode>
    <Country>sample string 11</Country>
    <JourneyStatus>true</JourneyStatus>
    <IdleStatus>true</IdleStatus>
    <MessageType>NO_EVENT</MessageType>
    <BatteryVoltage>14.1</BatteryVoltage>
  </MobileServiceTelemetryResponse>
</ArrayOfMobileServiceTelemetryResponse>