📘

Use the hub_url received in the registration response as your base URL.

📘

This API requires the device to authenticate, see Device Authentication.

This API allows a Parent device to send telemetry status for a number of children in one API request. The telemetry structure and response are documented in the Telemetry API.

Up to 100 updates are allowed per API call

Request

Multiple telemetries are send by sending an object in the request body mapping child device's UUIDs to telemetry objects.

{
  "11303e81-5d56-4910-a472-68676375d995": {
    "status": "online",
    "telemetries": {
      "speed": 10,
      "fuel": 99
    }
  },
  "b4adc748-4462-4933-8173-9d40e0a17d22": {
    "status": "offline"
  }
}

Response

The returned data contains a similar mapping, where each child device's UUID is mapped to a standard telemetry response (or error).

{
	"11303e81-5d56-4910-a472-68676375d995": {
		"error": "Common telemetries.speed must be string, number or boolean"
	},
	"b4adc748-4462-4933-8173-9d40e0a17d22": {
		"config_version": 0,
		"command": false,
		"info_version": 0,
		"new_licenses": false,
		"latest_fw_version": null,
		"latest_fw_file_id": null,
		"space_data_version": 2,
		"success": true
	}
}
Language
Authorization
Header
URL
Click Try It! to start a request and see the response here!