GET apioauth/tooltrack/groups/{groupId}/telemetry
Get the latest asset telemetry for all bluetooth assets in a group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId |
The group id queried |
unsigned integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GroupAssetResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| TagId |
The tag id of the bluetooth assset |
string |
None. |
| Telemetry |
The latest telemetry or null if there isnt any |
AssetTelemetryResponse |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TagId": "sample string 1",
"Telemetry": {
"Timestamp": "2025-12-14T06:16:09.0283164+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"
}
},
{
"TagId": "sample string 1",
"Telemetry": {
"Timestamp": "2025-12-14T06:16:09.0283164+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:
<ArrayOfGroupAssetResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<GroupAssetResponse>
<TagId>sample string 1</TagId>
<Telemetry>
<Timestamp>2025-12-14T06:16:09.0283164+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>
</Telemetry>
</GroupAssetResponse>
<GroupAssetResponse>
<TagId>sample string 1</TagId>
<Telemetry>
<Timestamp>2025-12-14T06:16:09.0283164+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>
</Telemetry>
</GroupAssetResponse>
</ArrayOfGroupAssetResponse>