GET apioauth/tooltrack/asset/telemetry?tagId={tagId}&startDate={startDate}&endDate={endDate}
Get telemetry for an asset
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tagId |
The tag id queried |
string |
Required |
startDate |
The start date being queried yyyyMMddHHmmss |
string |
Required |
endDate |
The end date being queried yyyyMMddHHmmss |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AssetTelemetryResponseName | Description | Type | Additional information |
---|---|---|---|
Timestamp | date |
None. |
|
Latitude | decimal number |
None. |
|
Longitude | decimal number |
None. |
|
Gateway | string |
None. |
|
Street | string |
None. |
|
Town | string |
None. |
|
Country | string |
None. |
|
Postcode | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Timestamp": "2025-04-27T16:24:15.3131852+00:00", "Latitude": 2.1, "Longitude": 3.1, "Gateway": "sample string 4", "Street": "sample string 5", "Town": "sample string 6", "Country": "sample string 7", "Postcode": "sample string 8" }, { "Timestamp": "2025-04-27T16:24:15.3131852+00:00", "Latitude": 2.1, "Longitude": 3.1, "Gateway": "sample string 4", "Street": "sample string 5", "Town": "sample string 6", "Country": "sample string 7", "Postcode": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfAssetTelemetryResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AssetTelemetryResponse> <Timestamp>2025-04-27T16:24:15.3131852+00:00</Timestamp> <Latitude>2.1</Latitude> <Longitude>3.1</Longitude> <Gateway>sample string 4</Gateway> <Street>sample string 5</Street> <Town>sample string 6</Town> <Country>sample string 7</Country> <Postcode>sample string 8</Postcode> </AssetTelemetryResponse> <AssetTelemetryResponse> <Timestamp>2025-04-27T16:24:15.3131852+00:00</Timestamp> <Latitude>2.1</Latitude> <Longitude>3.1</Longitude> <Gateway>sample string 4</Gateway> <Street>sample string 5</Street> <Town>sample string 6</Town> <Country>sample string 7</Country> <Postcode>sample string 8</Postcode> </AssetTelemetryResponse> </ArrayOfAssetTelemetryResponse>