PATCH apioauth/matrixv2/services/{serviceId}/latesttelemetry

Update the latest telemetry for a service

Request Information

URI Parameters

NameDescriptionTypeAdditional information
serviceId

unsigned integer

Required

Body Parameters

PatchLatestTelemetryRequest
NameDescriptionTypeAdditional 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-04-27T15:43:06.3597537+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-04-27T15:43:06.3597537+00:00</Timestamp>
</PatchLatestTelemetryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>