PATCH apioauth/matrixv2/services/{serviceId}/latesttelemetry
Update the latest telemetry for a service
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceId | unsigned integer |
Required |
Body Parameters
PatchLatestTelemetryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleRegistration |
The vehicle registration |
string |
None. |
| Latitude |
The latitude |
decimal number |
None. |
| Longitude |
The longitude |
decimal number |
None. |
| Street |
The address street |
string |
None. |
| Town |
The address town |
string |
None. |
| Country |
The address country |
string |
None. |
| Postcode |
The address postcode |
string |
None. |
| Timestamp |
The position timestamp in UTC |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"VehicleRegistration": "sample string 1",
"Latitude": 1.1,
"Longitude": 1.1,
"Street": "sample string 2",
"Town": "sample string 3",
"Country": "sample string 4",
"Postcode": "sample string 5",
"Timestamp": "2025-12-13T19:16:08.1382167+00:00"
}
application/xml, text/xml
Sample:
<PatchLatestTelemetryRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <VehicleRegistration>sample string 1</VehicleRegistration> <Latitude>1.1</Latitude> <Longitude>1.1</Longitude> <Street>sample string 2</Street> <Town>sample string 3</Town> <Country>sample string 4</Country> <Postcode>sample string 5</Postcode> <Timestamp>2025-12-13T19:16:08.1382167+00:00</Timestamp> </PatchLatestTelemetryRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean>true</boolean>