POST apimobileoauth/mobile/mobileserviceadditionaltelemetry
View additional telemetry for a service
Request Information
URI Parameters
None.
Body Parameters
A MobileServiceTelemetryRequest
OAuthMobileServiceAdditionalTelemetryRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| ServiceID | 
                         The service id you are requesting telemetry for  | 
                    unsigned integer | 
                             None.  | 
                
| StartDate | 
                         The start date being queried  | 
                    date | 
                             None.  | 
                
| EndDate | 
                         The end date being queried  | 
                    date | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "ServiceID": 1,
  "StartDate": "2025-11-04T14:30:13.1433192+00:00",
  "EndDate": "2025-11-04T14:30:13.1433192+00:00"
}
        application/xml, text/xml
            Sample:
        <OAuthMobileServiceAdditionalTelemetryRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ServiceID>1</ServiceID> <StartDate>2025-11-04T14:30:13.1433192+00:00</StartDate> <EndDate>2025-11-04T14:30:13.1433192+00:00</EndDate> </OAuthMobileServiceAdditionalTelemetryRequest>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
A collection of MobileServiceAdditionalTelemetryResponse
Collection of MobileServiceAdditionalTelemetryResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| ServiceID | 
                         The service id which created the telemetry  | 
                    unsigned integer | 
                             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.  | 
                
| MessageType | 
                         The message type  | 
                    event_t | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "ServiceID": 1,
    "GPSLatitude": 2.1,
    "GPSLongitude": 3.1,
    "GPSSpeed": 4.1,
    "GPSTime": "2025-11-04T14:30:13.1433192+00:00",
    "RoadSpeed": 6,
    "Street": "sample string 7",
    "Town": "sample string 8",
    "Postcode": "sample string 9",
    "Country": "sample string 10",
    "MessageType": 0
  },
  {
    "ServiceID": 1,
    "GPSLatitude": 2.1,
    "GPSLongitude": 3.1,
    "GPSSpeed": 4.1,
    "GPSTime": "2025-11-04T14:30:13.1433192+00:00",
    "RoadSpeed": 6,
    "Street": "sample string 7",
    "Town": "sample string 8",
    "Postcode": "sample string 9",
    "Country": "sample string 10",
    "MessageType": 0
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfMobileServiceAdditionalTelemetryResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MobileServiceAdditionalTelemetryResponse>
    <ServiceID>1</ServiceID>
    <GPSLatitude>2.1</GPSLatitude>
    <GPSLongitude>3.1</GPSLongitude>
    <GPSSpeed>4.1</GPSSpeed>
    <GPSTime>2025-11-04T14:30:13.1433192+00:00</GPSTime>
    <RoadSpeed>6</RoadSpeed>
    <Street>sample string 7</Street>
    <Town>sample string 8</Town>
    <Postcode>sample string 9</Postcode>
    <Country>sample string 10</Country>
    <MessageType>NO_EVENT</MessageType>
  </MobileServiceAdditionalTelemetryResponse>
  <MobileServiceAdditionalTelemetryResponse>
    <ServiceID>1</ServiceID>
    <GPSLatitude>2.1</GPSLatitude>
    <GPSLongitude>3.1</GPSLongitude>
    <GPSSpeed>4.1</GPSSpeed>
    <GPSTime>2025-11-04T14:30:13.1433192+00:00</GPSTime>
    <RoadSpeed>6</RoadSpeed>
    <Street>sample string 7</Street>
    <Town>sample string 8</Town>
    <Postcode>sample string 9</Postcode>
    <Country>sample string 10</Country>
    <MessageType>NO_EVENT</MessageType>
  </MobileServiceAdditionalTelemetryResponse>
</ArrayOfMobileServiceAdditionalTelemetryResponse>