POST
/
{vin}
/
fleet_telemetry_config
Set Telemetry Config
curl --request POST \
  --url https://api.tessie.com/{vin}/fleet_telemetry_config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "fields": {
    "ACChargingPower": {
      "interval_seconds": 60
    },
    "BatteryLevel": {
      "interval_seconds": 60
    },
    "ChargeState": {
      "interval_seconds": 60
    },
    "DCChargingPower": {
      "interval_seconds": 60
    },
    "EnergyRemaining": {
      "interval_seconds": 60
    },
    "Gear": {
      "interval_seconds": 60
    },
    "IdealBatteryRange": {
      "interval_seconds": 60
    },
    "Location": {
      "interval_seconds": 60
    },
    "Odometer": {
      "interval_seconds": 60
    },
    "RatedRange": {
      "interval_seconds": 60
    }
  }
}'
{
  "result": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vin
string
required

The associated VIN.

Body

application/json

The body is of type object.

Response

200 - application/json

OK

The response is of type object.